diff options
author | juraj.linkes <juraj.linkes@pantheon.tech> | 2018-12-20 14:53:27 +0100 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-01-10 11:15:08 +0000 |
commit | e33cab390705f7fd24cf9443a18a96a4e309707d (patch) | |
tree | 107a2d16042215cdb89c6af0fc057ed23df9d659 /test | |
parent | 23c9a2e5d143de2007a750369e4c796d354ca347 (diff) |
Enable random reassembly test for ARM
The underlying failure has been fixed and now the test can be
re-enabled.
Change-Id: I75251f6150ef1771dc23ea079799229690cf87d9
Signed-off-by: juraj.linkes <juraj.linkes@pantheon.tech>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_reassembly.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/test_reassembly.py b/test/test_reassembly.py index 353433c5558..6c0513ee76d 100644 --- a/test/test_reassembly.py +++ b/test/test_reassembly.py @@ -4,8 +4,7 @@ import six import unittest from random import shuffle -from framework import VppTestCase, VppTestRunner, is_skip_aarch64_set,\ - is_platform_aarch64 +from framework import VppTestCase, VppTestRunner from scapy.packet import Raw from scapy.layers.l2 import Ether, GRE @@ -275,8 +274,6 @@ class TestIPv4Reassembly(VppTestCase): # self.assert_packet_counter_equal( # "/err/ip4-reassembly-feature/malformed packets", 1) - @unittest.skipIf(is_skip_aarch64_set and is_platform_aarch64, - "test doesn't work on aarch64") def test_random(self): """ random order reassembly """ |