aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_reassembly.py
diff options
context:
space:
mode:
authorjuraj.linkes <juraj.linkes@pantheon.tech>2018-11-29 09:37:08 +0100
committerOle Trøan <otroan@employees.org>2018-12-06 20:58:35 +0000
commit68ebc83e60f91104667b5ee4b4ab13d9716ee860 (patch)
tree8aa467d955a08abfa616e382ff472cb8ed633020 /test/test_reassembly.py
parentf0cbcea428e8ffe6018ea782df9ebe9eb5b08dd0 (diff)
Skip failing ARM testcases for CI
There are a few tests that fail on ARM and thus we can't enable testing in CI. Skip the failing tests until they're fixed so that we catch new failures in CI (when we enable testing for the remaining tests). Change-Id: Ie896ef5c449ef965029633e38d317a8d5ac26352 Signed-off-by: juraj.linkes <juraj.linkes@pantheon.tech>
Diffstat (limited to 'test/test_reassembly.py')
-rw-r--r--test/test_reassembly.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/test_reassembly.py b/test/test_reassembly.py
index 95fefdb5aa1..0c11d9b3ce8 100644
--- a/test/test_reassembly.py
+++ b/test/test_reassembly.py
@@ -4,7 +4,8 @@ import six
import unittest
from random import shuffle
-from framework import VppTestCase, VppTestRunner
+from framework import VppTestCase, VppTestRunner, is_skip_aarch64_set,\
+ is_platform_aarch64
from scapy.packet import Raw
from scapy.layers.l2 import Ether, GRE
@@ -177,6 +178,8 @@ class TestIPv4Reassembly(VppTestCase):
self.verify_capture(packets)
self.src_if.assert_nothing_captured()
+ @unittest.skipIf(is_skip_aarch64_set() and is_platform_aarch64(),
+ "test doesn't work on aarch64")
def test_random(self):
""" random order reassembly """