test/two_guests: Fix sleep command for DAD
An inline comment prefixed by a space doesn't mean the space is dropped, and sleep(1) will get a blank in its argument. Move the comment on its own line. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
e934da3c81
commit
2d75a3d71c
1 changed files with 2 additions and 1 deletions
|
@ -32,7 +32,8 @@ check [ "__ADDR1__" = "__HOST_ADDR__" ]
|
||||||
check [ "__ADDR2__" = "__HOST_ADDR__" ]
|
check [ "__ADDR2__" = "__HOST_ADDR__" ]
|
||||||
|
|
||||||
test DHCPv6: addresses
|
test DHCPv6: addresses
|
||||||
sleep 2 # Link is up now: DAD
|
# Link is up now, wait for DAD to complete
|
||||||
|
sleep 2
|
||||||
guest1 /sbin/dhclient -6 __IFNAME1__
|
guest1 /sbin/dhclient -6 __IFNAME1__
|
||||||
guest2 /sbin/dhclient -6 __IFNAME1__
|
guest2 /sbin/dhclient -6 __IFNAME1__
|
||||||
g1out ADDR1_6 ip -j -6 ad sh|jq -rM '.[] | select(.ifname == "__IFNAME1__").addr_info[] | select(.prefixlen == 128).local'
|
g1out ADDR1_6 ip -j -6 ad sh|jq -rM '.[] | select(.ifname == "__IFNAME1__").addr_info[] | select(.prefixlen == 128).local'
|
||||||
|
|
Loading…
Reference in a new issue