diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2021-05-27 19:44:50 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2021-05-28 16:08:09 +0000 |
commit | 5c520919e838bcb645ddd879641d54c620740989 (patch) | |
tree | c41b361b7850d0ef7c468a94908bbbaba17db547 /test | |
parent | d63360cacca91e243a9bff70a7fd12df9c6cf95f (diff) |
svm: fix inadequate atomic load for chunk mgr
- Fixes intermittent LDP cut thru iperf3 test
failure on AARCH64
Type: fix
Change-Id: Id21a078d642e03d974bacacd1f4d0faa42fb6652
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test')
-rwxr-xr-x | test/test_vcl.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_vcl.py b/test/test_vcl.py index a574f7ff6f4..2688816d42a 100755 --- a/test/test_vcl.py +++ b/test/test_vcl.py @@ -6,7 +6,7 @@ import os import subprocess import signal from framework import VppTestCase, VppTestRunner, running_extended_tests, \ - Worker, is_platform_aarch64 + Worker from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath, FibPathProto iperf3 = '/usr/bin/iperf3' @@ -291,8 +291,6 @@ class LDPCutThruTestCase(VCLTestCase): "sock_test_client", self.client_echo_test_args) @unittest.skipUnless(_have_iperf3, "'%s' not found, Skipping.") - @unittest.skipIf(is_platform_aarch64, - "intermittently fails on AARCH64 CI jobs") def test_ldp_cut_thru_iperf3(self): """ run LDP cut thru iperf3 test """ |