X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=resources%2Flibraries%2Fpython%2FConstants.py;h=cb66a5d8d5d62a93048ee44cb3fa7c9a8244dbb6;hb=533fcfe3d177447aee7a3dca5f0d7a5f06d70377;hp=72310ba8cea87900a436469b01f6f61cfd78feee;hpb=9fdc420129db69d20c8f603c15205f2aaf375d66;p=csit.git diff --git a/resources/libraries/python/Constants.py b/resources/libraries/python/Constants.py index 72310ba8ce..cb66a5d8d5 100644 --- a/resources/libraries/python/Constants.py +++ b/resources/libraries/python/Constants.py @@ -40,6 +40,9 @@ class Constants(object): # KernelVM templates location RESOURCES_TPL_VM = 'resources/templates/vm' + # Container templates location + RESOURCES_TPL_CONTAINER = 'resources/templates/container' + # OpenVPP VAT binary name VAT_BIN_NAME = 'vpp_api_test' @@ -65,10 +68,10 @@ class Constants(object): QEMU_VM_DPDK = '/opt/dpdk-19.02' # TRex install version - TREX_INSTALL_VERSION = '2.35' + TREX_INSTALL_VERSION = '2.54' # TRex install directory - TREX_INSTALL_DIR = '/opt/trex-core-2.35' + TREX_INSTALL_DIR = '/opt/trex-core-2.54' # Honeycomb directory location at topology nodes: REMOTE_HC_DIR = '/opt/honeycomb' @@ -94,6 +97,9 @@ class Constants(object): # Equivalent to ~0 used in vpp code BITWISE_NON_ZERO = 0xffffffff + # Maximum number of API calls per PapiExecutor execution + PAPI_MAX_API_BULK = 250 + # Mapping from NIC name to its bps limit. # TODO: Implement logic to lower limits to TG NIC or software. Or PCI. NIC_NAME_TO_LIMIT = { @@ -105,6 +111,7 @@ class Constants(object): "Intel-X710": 10000000000, "Intel-XL710": 24500000000, "Intel-XXV710": 24500000000, + "virtual": 100000000, } # Suite file names use somewhat more rich (less readable) codes for NICs.