cuse: Remove vHost Cuse support
[vswitchperf.git] / conf / 00_common.conf
1 # Copyright 2015 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #   http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # ###########################
16 # Common setting potentially accessed by all components.
17 # ###########################
18
19 import os
20
21 # default language and encoding, which will be set in case
22 # that locale is not set properly
23 DEFAULT_LOCALE = 'en_US.UTF-8'
24
25 # default language and encoding, which will be used by external
26 # commands; This values will be set in case, that VSPERF parses
27 # command output.
28 DEFAULT_CMD_LOCALE = 'en_US.UTF-8'
29
30 # ############################
31 # Directories
32 # ############################
33
34 ROOT_DIR = os.path.normpath(os.path.join(
35     os.path.dirname(os.path.realpath(__file__)), '../'))
36 TRAFFICGEN_DIR = os.path.join(ROOT_DIR, 'tools/pkt_gen')
37 SYSMETRICS_DIR = os.path.join(ROOT_DIR, 'tools/collectors')
38
39 # deployment specific paths to OVS and DPDK
40 OVS_DIR_VANILLA = os.path.join(ROOT_DIR, 'src_vanilla/ovs/ovs/')
41
42 RTE_SDK_USER = os.path.join(ROOT_DIR, 'src/dpdk/dpdk/')
43 OVS_DIR_USER = os.path.join(ROOT_DIR, 'src/ovs/ovs/')
44
45 # the same qemu version is used for vanilla and vHost User
46 QEMU_DIR = os.path.join(ROOT_DIR, 'src/qemu/qemu/')
47
48 # ############################
49 # Process configuration
50 # ############################
51
52 # shell command to use when running commands through Pexpect
53 SHELL_CMD = ['/bin/bash', '-c']
54
55 # ############################
56 # Logging configuration
57 # ############################
58
59 # default log output directory for all logs
60 LOG_DIR = '/tmp'
61
62 # default log for all "small" executables
63 LOG_FILE_DEFAULT = 'overall.log'
64
65 # log file for all commands executed on host
66 LOG_FILE_HOST_CMDS = 'host-cmds.log'
67
68 # ############################
69 # Test configuration
70 # ############################
71
72 # verbosity of output to 'stdout'
73 # NOTE: output to log files is always 'debug' level
74 VERBOSITY = 'debug'
75
76 # dictionary of test-specific parameters. These values are accessible
77 # from anywhere in the test framework so be careful with naming
78 # conventions
79 TEST_PARAMS = {}
80
81 # ############################
82 # Modules
83 # ############################
84
85 # following modules will be excluded from automatic load by LoaderServant
86 # it can be used to suppress automatic load of obsoleted or abstract modules
87 # Example:
88 #   EXCLUDE_MODULES = ['ovs_vanilla', 'qemu_virtio_net', 'pidstat']
89 EXCLUDE_MODULES = ["testcenter-rfc2544-throughput"]