From 5d54b694f37feeb0a1cee409986f6263389c361c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Mon, 26 Feb 2024 18:03:01 +0100 Subject: [PATCH] wifi: Fix test duration not large enough to cover all multiple PHY interfaces scenarios --- src/wifi/test/spectrum-wifi-phy-test.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wifi/test/spectrum-wifi-phy-test.cc b/src/wifi/test/spectrum-wifi-phy-test.cc index 10ac16584..9091572e1 100644 --- a/src/wifi/test/spectrum-wifi-phy-test.cc +++ b/src/wifi/test/spectrum-wifi-phy-test.cc @@ -1396,7 +1396,8 @@ SpectrumWifiPhyMultipleInterfacesTest::DoRun() } } - Simulator::Stop(Seconds(30)); + delay += Seconds(1); + Simulator::Stop(delay); Simulator::Run(); }