aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2026-05-12 17:45:08 +0000
committerMark Johnston <markj@FreeBSD.org>2026-05-12 20:05:18 +0000
commit3b16e96b005c723717aa6a4ebc48000354e64fa1 (patch)
treef4f5b30cc0bb36983d5ca344acdb63e35f511264
parent26bffe5695d7cab2e797ce4ad153f324c0262f48 (diff)
tests/ip_mroute: Remove test timeouts
The configured timeout of 30s is a bit too low for a couple of tests which create 4+ VNET jails when running tests in parallel and with kernel sanitizers enabled. There's no reason to have custom timeouts, just use the default. MFC after: 1 week
-rw-r--r--tests/sys/netinet/ip_mroute.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/sys/netinet/ip_mroute.py b/tests/sys/netinet/ip_mroute.py
index c79b046445e5..0a705670e89b 100644
--- a/tests/sys/netinet/ip_mroute.py
+++ b/tests/sys/netinet/ip_mroute.py
@@ -192,7 +192,6 @@ class Test1RBasicINET(MRouteINETTestTemplate):
@pytest.mark.require_user("root")
@pytest.mark.require_progs(["pimd"])
- @pytest.mark.timeout(30)
def test(self):
self.starttest(["vnet_host1", "vnet_host2"])
self.waittest()
@@ -287,7 +286,6 @@ class Test1RCrissCrossINET(MRouteINETCrissCrossTestTemplate):
@pytest.mark.require_user("root")
@pytest.mark.require_progs(["pimd"])
- @pytest.mark.timeout(30)
def test(self):
self.starttest(["vnet_host1", "vnet_host2", "vnet_host3", "vnet_host4"])
self.waittest()
@@ -347,7 +345,6 @@ class Test1RCrissCrossINETMissingRouter(MRouteINETCrissCrossTestTemplate):
@pytest.mark.require_user("root")
@pytest.mark.require_progs(["pimd"])
- @pytest.mark.timeout(30)
def test(self):
self.starttest(["vnet_host1", "vnet_host2", "vnet_host3", "vnet_host4"])
self.waittest()
@@ -401,7 +398,6 @@ class Test1RBasicINET6(MRouteINET6TestTemplate):
self.donetest()
@pytest.mark.require_user("root")
- @pytest.mark.timeout(30)
def test(self):
self.starttest(["vnet_host1", "vnet_host2"])
self.waittest()
@@ -489,7 +485,6 @@ class Test1RCrissCrossINET6MissingRouter(MRouteINET6CrissCrossTestTemplate):
self.donetest()
@pytest.mark.require_user("root")
- @pytest.mark.timeout(30)
def test(self):
self.starttest(["vnet_host1", "vnet_host2", "vnet_host3", "vnet_host4"])
self.waittest()
@@ -549,7 +544,6 @@ class Test1RCrissCrossINET6(MRouteINET6CrissCrossTestTemplate):
self.donetest()
@pytest.mark.require_user("root")
- @pytest.mark.timeout(30)
def test(self):
self.starttest(["vnet_host1", "vnet_host2", "vnet_host3", "vnet_host4"])
self.waittest()