diff options
author | juraj.linkes <juraj.linkes@pantheon.tech> | 2018-11-29 09:37:08 +0100 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2018-12-06 20:58:35 +0000 |
commit | 68ebc83e60f91104667b5ee4b4ab13d9716ee860 (patch) | |
tree | 8aa467d955a08abfa616e382ff472cb8ed633020 /test/test_gbp.py | |
parent | f0cbcea428e8ffe6018ea782df9ebe9eb5b08dd0 (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_gbp.py')
-rw-r--r-- | test/test_gbp.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/test_gbp.py b/test/test_gbp.py index f49ba4c49e1..53dcf3bfd34 100644 --- a/test/test_gbp.py +++ b/test/test_gbp.py @@ -2,7 +2,8 @@ import unittest -from framework import VppTestCase, VppTestRunner +from framework import VppTestCase, VppTestRunner, is_skip_aarch64_set, \ + is_platform_aarch64 from vpp_object import VppObject from vpp_neighbor import VppNeighbor from vpp_ip_route import VppIpRoute, VppRoutePath, VppIpTable, \ @@ -1827,6 +1828,8 @@ class TestGBP(VppTestCase): self.logger.info(self.vapi.cli("sh int")) self.logger.info(self.vapi.cli("sh gbp vxlan")) + @unittest.skipIf(is_skip_aarch64_set() and is_platform_aarch64(), + "test doesn't work on aarch64") def test_gbp_learn_vlan_l2(self): """ GBP L2 Endpoint w/ VLANs""" @@ -1995,6 +1998,8 @@ class TestGBP(VppTestCase): self.pg2.unconfig_ip4() self.pg3.unconfig_ip4() + @unittest.skipIf(is_skip_aarch64_set() and is_platform_aarch64(), + "test doesn't work on aarch64") def test_gbp_learn_l3(self): """ GBP L3 Endpoint Learning """ |