From: Yu Watanabe Date: Sun, 10 Jul 2022 21:54:40 +0000 (+0200) Subject: test-network: extend timeout for DHCP lease to be expired X-Git-Tag: v252-rc1~682^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=286bf3a940d29904531fb9fe2145c2adeac104a3;p=thirdparty%2Fsystemd.git test-network: extend timeout for DHCP lease to be expired Fixes #23964. --- diff --git a/test/test-network/systemd-networkd-tests.py b/test/test-network/systemd-networkd-tests.py index 46c182be465..344b5be1f9d 100755 --- a/test/test-network/systemd-networkd-tests.py +++ b/test/test-network/systemd-networkd-tests.py @@ -4936,7 +4936,7 @@ class NetworkdDHCPClientTests(unittest.TestCase, Utilities): stop_dnsmasq() print('Wait for the DHCP lease to be expired and an IPv4LL address to be acquired') - self.wait_address_dropped('veth99', r'inet 192\.168\.5\.\d+/24 metric 1024 brd 192\.168\.5\.255 scope global dynamic', ipv='-4', timeout_sec=120) + self.wait_address_dropped('veth99', r'inet 192\.168\.5\.\d+/24 metric 1024 brd 192\.168\.5\.255 scope global dynamic', ipv='-4', timeout_sec=130) self.wait_address('veth99', r'inet 169\.254\.\d+\.\d+/16 metric 2048 brd 169\.254\.255\.255 scope link', scope='link', ipv='-4') output = check_output('ip -4 address show dev veth99')