mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-23 17:34:00 +03:00
tests: ignore router state in networkd test (#6390)
In networkd-test.py, don't assert that the router state is "routable". While it should eventually become that, we don't wait for it, and thus at that point it often is "carrier" or "degrated" still. It is also not really relevant as this only tests the "client" side interface.
This commit is contained in:
parent
db3f45e2d2
commit
23fa427d66
@ -334,7 +334,7 @@ DHCP=%s
|
|||||||
|
|
||||||
# check networkctl state
|
# check networkctl state
|
||||||
out = subprocess.check_output(['networkctl'])
|
out = subprocess.check_output(['networkctl'])
|
||||||
self.assertRegex(out, (r'%s\s+ether\s+routable\s+unmanaged' % self.if_router).encode())
|
self.assertRegex(out, (r'%s\s+ether\s+[a-z-]+\s+unmanaged' % self.if_router).encode())
|
||||||
self.assertRegex(out, (r'%s\s+ether\s+routable\s+configured' % self.iface).encode())
|
self.assertRegex(out, (r'%s\s+ether\s+routable\s+configured' % self.iface).encode())
|
||||||
|
|
||||||
out = subprocess.check_output(['networkctl', 'status', self.iface])
|
out = subprocess.check_output(['networkctl', 'status', self.iface])
|
||||||
|
Loading…
Reference in New Issue
Block a user