diff options
Diffstat (limited to 'VNFs/DPPD-PROX/helper-scripts/rapid/rapidxt.py')
-rw-r--r-- | VNFs/DPPD-PROX/helper-scripts/rapid/rapidxt.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/VNFs/DPPD-PROX/helper-scripts/rapid/rapidxt.py b/VNFs/DPPD-PROX/helper-scripts/rapid/rapidxt.py index 2a82df5c..b9b1dc78 100644 --- a/VNFs/DPPD-PROX/helper-scripts/rapid/rapidxt.py +++ b/VNFs/DPPD-PROX/helper-scripts/rapid/rapidxt.py @@ -37,8 +37,11 @@ class RapidXt(testcase.TestCase): test_params[key] = kwargs[key] os.makedirs(self.res_dir, exist_ok=True) test_params['resultsdir'] = self.res_dir + _, test_file_name = os.path.split(test_params['test_file']) + _, environment_file_name = os.path.split( + test_params['environment_file']) log_file = '{}/RUN{}.{}.log'.format(self.res_dir, - test_params['environment_file'], test_params['test_file']) + environment_file_name, test_file) RapidLog.log_init(log_file, test_params['loglevel'], test_params['screenloglevel'] , test_params['version'] ) test_manager = RapidTestManager() |