X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=conf%2F00_common.conf;h=944619c5791f5848b6a1f2d30ee80eb2803cf228;hb=refs%2Fchanges%2F27%2F16827%2F1;hp=ef1c6280e9b9a9708a44f4db4c6662144788e779;hpb=8d6777df09c3dc441013a31f21cc50ab3b0f42a3;p=vswitchperf.git diff --git a/conf/00_common.conf b/conf/00_common.conf index ef1c6280..944619c5 100644 --- a/conf/00_common.conf +++ b/conf/00_common.conf @@ -18,6 +18,15 @@ import os +# default language and encoding, which will be set in case +# that locale is not set properly +DEFAULT_LOCALE = 'en_US.UTF-8' + +# default language and encoding, which will be used by external +# commands; This values will be set in case, that VSPERF parses +# command output. +DEFAULT_CMD_LOCALE = 'en_US.UTF-8' + # ############################ # Directories # ############################ @@ -27,6 +36,18 @@ ROOT_DIR = os.path.normpath(os.path.join( TRAFFICGEN_DIR = os.path.join(ROOT_DIR, 'tools/pkt_gen') SYSMETRICS_DIR = os.path.join(ROOT_DIR, 'tools/collectors') +# deployment specific paths to OVS and DPDK +OVS_DIR_VANILLA = os.path.join(ROOT_DIR, 'src_vanilla/ovs/ovs/') + +RTE_SDK_CUSE = os.path.join(ROOT_DIR, 'src_cuse/dpdk/dpdk/') +OVS_DIR_CUSE = os.path.join(ROOT_DIR, 'src_cuse/ovs/ovs/') + +RTE_SDK_USER = os.path.join(ROOT_DIR, 'src/dpdk/dpdk/') +OVS_DIR_USER = os.path.join(ROOT_DIR, 'src/ovs/ovs/') + +# the same qemu version is used for vanilla, vHost User and Cuse +QEMU_DIR = os.path.join(ROOT_DIR, 'src/qemu/qemu/') + # ############################ # Process configuration # ############################ @@ -59,3 +80,13 @@ VERBOSITY = 'debug' # from anywhere in the test framework so be careful with naming # conventions TEST_PARAMS = {} + +# ############################ +# Modules +# ############################ + +# following modules will be excluded from automatic load by LoaderServant +# it can be used to suppress automatic load of obsoleted or abstract modules +# Example: +# EXCLUDE_MODULES = ['ovs_vanilla', 'qemu_virtio_net', 'pidstat'] +EXCLUDE_MODULES = ["testcenter-rfc2544-throughput"]