diff options
author | Lou Berger <lberger@labn.net> | 2018-12-01 03:23:02 +0100 |
---|---|---|
committer | Lou Berger <lberger@labn.net> | 2018-12-08 16:42:21 +0100 |
commit | 8cd7c744df2895958b17f7e043d02ce81194cfc0 (patch) | |
tree | 416a96d1a5307231784c2c44590a5c9cdeec2fc7 /tests/topotests/lib/topotest.py | |
parent | Merge pull request #3372 from nitinsoniism/show_evpn_mac_vni_all_detail (diff) | |
download | frr-8cd7c744df2895958b17f7e043d02ce81194cfc0.tar.xz frr-8cd7c744df2895958b17f7e043d02ce81194cfc0.zip |
topotest: remove sleep on staticd startup
Signed-off-by: Lou Berger <lberger@labn.net>
Diffstat (limited to '')
-rw-r--r-- | tests/topotests/lib/topotest.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py index f25b06628..e9b8d34ec 100644 --- a/tests/topotests/lib/topotest.py +++ b/tests/topotests/lib/topotest.py @@ -863,7 +863,6 @@ class Router(Node): )) self.waitOutput() logger.debug('{}: {} staticd started'.format(self, self.routertype)) - sleep(1, '{}: waiting for staticd to start'.format(self.name)) # Fix Link-Local Addresses # Somehow (on Mininet only), Zebra removes the IPv6 Link-Local addresses on start. Fix this self.cmd('for i in `ls /sys/class/net/` ; do mac=`cat /sys/class/net/$i/address`; IFS=\':\'; set $mac; unset IFS; ip address add dev $i scope link fe80::$(printf %02x $((0x$1 ^ 2)))$2:${3}ff:fe$4:$5$6/64; done') |