From c98c9f6f3fd7706367e06f36f1e9cfd0c64c4c21 Mon Sep 17 00:00:00 2001 From: "Sridhar K. N. Rao" Date: Wed, 28 Aug 2019 09:15:48 +0530 Subject: VSPERF: Enable results publishing through config-file. This patch enables the publising of results to TestAPI via config-file. Initial OPNFVPOD to empty string in 00_common.conf Signed-off-by: Sridhar K. N. Rao Change-Id: I5ca03d094b075c6b5ab5d656421aff506ce4b273 --- conf/00_common.conf | 3 +++ vsperf | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/conf/00_common.conf b/conf/00_common.conf index a846fb55..9b71fda0 100644 --- a/conf/00_common.conf +++ b/conf/00_common.conf @@ -131,6 +131,9 @@ CUMULATIVE_PARAMS = False # For example: 'throughput_rx_mbps', 'throughput_rx_fps', 'avg_latency_ns' MATRIX_METRIC = 'throughput_rx_fps' +# OPNFVPOD specification. +OPNFVPOD = '' + # ############################ # Modules # ############################ diff --git a/vsperf b/vsperf index 003ca88b..1c72a708 100755 --- a/vsperf +++ b/vsperf @@ -896,8 +896,9 @@ def main(): output=settings.getValue('XUNIT_DIR'), outsuffix="", verbosity=0).run(suite) - if args['opnfvpod']: - pod_name = args['opnfvpod'] + if args['opnfvpod'] or settings.getValue('OPNFVPOD'): + pod_name = (args['opnfvpod'] if args['opnfvpod'] else + settings.getValue('OPNFVPOD')) installer_name = str(settings.getValue('OPNFV_INSTALLER')).lower() opnfv_url = settings.getValue('OPNFV_URL') pkg_list = settings.getValue('PACKAGE_LIST') -- cgit 1.2.3-korg