diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/03_traffic.conf | 2 | ||||
-rw-r--r-- | conf/04_vnf.conf | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/conf/03_traffic.conf b/conf/03_traffic.conf index 04266923..98bce2c5 100644 --- a/conf/03_traffic.conf +++ b/conf/03_traffic.conf @@ -109,7 +109,7 @@ TRAFFICGEN_STC_WEST_PORT_NUM = "" TRAFFICGEN_STC_TEST_SESSION_NAME = "RFC2544 Tput" # The directory to copy results to -TRAFFICGEN_STC_RESULTS_DIR = "./Results" +TRAFFICGEN_STC_RESULTS_DIR = os.path.join(ROOT_DIR, "Results") # The prefix for the CSV results file TRAFFICGEN_STC_CSV_RESULTS_FILE_PREFIX = "RFC2544_tput" diff --git a/conf/04_vnf.conf b/conf/04_vnf.conf index e0c72b10..e3a4824b 100644 --- a/conf/04_vnf.conf +++ b/conf/04_vnf.conf @@ -15,7 +15,7 @@ # ############################ # VNF configuration # ############################ -VNF_DIR = 'vnfs/' +VNF_DIR = os.path.join(ROOT_DIR, 'vnfs/') VNF = 'QemuDpdkVhostUser' VNF_AFFINITIZATION_ON = True |