From c5a075eafc322d9ae62322e90ab4e232df176743 Mon Sep 17 00:00:00 2001 From: "Sridhar K. N. Rao" Date: Wed, 20 Mar 2019 17:32:33 +0530 Subject: Logs: Move test-specific logs to test-specific results folder This patch moves the following logs to results-folder. 1. qemu.log 2. vswitchd.log 3. host.log 4. vsperf-overall 5. vpp 6. trafficgen Move the logging of creating results directory after configure-logging JIRA: VSPERF-600 Change-Id: I5b0a827ea2dfaf869d2495b5f4a7b5dd2bd054ac Signed-off-by: Sridhar K. N. Rao --- vswitches/ovs.py | 2 +- vswitches/vpp_dpdk_vhost.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'vswitches') diff --git a/vswitches/ovs.py b/vswitches/ovs.py index 03c8dadd..e713fc38 100644 --- a/vswitches/ovs.py +++ b/vswitches/ovs.py @@ -52,7 +52,7 @@ class IVSwitchOvs(IVSwitch, tasks.Process): uid=settings.getValue( 'LOG_TIMESTAMP'), ex=ext) - self._logfile = os.path.join(settings.getValue('LOG_DIR'), + self._logfile = os.path.join(settings.getValue('RESULTS_PATH'), rename_vswitchd) self._ovsdb_pidfile_path = os.path.join(settings.getValue('TOOLS')['ovs_var_tmp'], "ovsdb-server.pid") diff --git a/vswitches/vpp_dpdk_vhost.py b/vswitches/vpp_dpdk_vhost.py index f639d3d6..5dfc314d 100644 --- a/vswitches/vpp_dpdk_vhost.py +++ b/vswitches/vpp_dpdk_vhost.py @@ -42,7 +42,7 @@ class VppDpdkVhost(IVSwitch, tasks.Process): uid=S.getValue( 'LOG_TIMESTAMP'), ex=ext) - self._logfile = os.path.join(S.getValue('LOG_DIR'), rename_vpplf) + self._logfile = os.path.join(S.getValue('RESULTS_PATH'), rename_vpplf) self._expect = r'vpp#' self._cmd_template = ['sudo', '-E', S.getValue('TOOLS')['vpp']] self._phy_ports = [] -- cgit 1.2.3-korg