Revert "Disable CRC checking at runtime"
[csit.git] / resources / libraries / python / Constants.py
index 0a25268..c970d19 100644 (file)
@@ -74,7 +74,7 @@ class Constants(object):
     DOCKER_SUT_IMAGE_UBUNTU = 'snergster/csit-sut:latest'
 
     # Docker container arm SUT image
-    DOCKER_SUT_IMAGE_UBUNTU_ARM = 'snergster/csit-sut-arm-ubuntu18:latest'
+    DOCKER_SUT_IMAGE_UBUNTU_ARM = 'snergster/csit-arm-sut:latest'
 
     # TRex install version
     TREX_INSTALL_VERSION = '2.54'
@@ -106,8 +106,11 @@ 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
+    # Default path to VPP API socket.
+    SOCKSVR_PATH = "/run/vpp/api.sock"
+
+    # Global "kill switch" for CRC checking during runtime.
+    CRC_MISMATCH_FAILS_TEST = True
 
     # Mapping from NIC name to its bps limit.
     # TODO: Implement logic to lower limits to TG NIC or software. Or PCI.