diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2022-01-26 07:29:07 +0100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-01-26 16:30:59 +0100 |
commit | c48758bec65cfa80d1389459f66c3efe00117396 (patch) | |
tree | a456a1c69c2ec03681215cccb67fc34636a05f2b /test | |
parent | 6910c1ef28f444350903fef47cefb37255fbf245 (diff) | |
download | passt-c48758bec65cfa80d1389459f66c3efe00117396.tar passt-c48758bec65cfa80d1389459f66c3efe00117396.tar.gz passt-c48758bec65cfa80d1389459f66c3efe00117396.tar.bz2 passt-c48758bec65cfa80d1389459f66c3efe00117396.tar.lz passt-c48758bec65cfa80d1389459f66c3efe00117396.tar.xz passt-c48758bec65cfa80d1389459f66c3efe00117396.tar.zst passt-c48758bec65cfa80d1389459f66c3efe00117396.zip |
test/two_guests: Drop stray spaces after sleep directives
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/two_guests/basic | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/two_guests/basic b/test/two_guests/basic index d23b6e9..24352c0 100644 --- a/test/two_guests/basic +++ b/test/two_guests/basic @@ -47,7 +47,7 @@ g1out GW1 ip -j -4 ro sh|jq -rM '.[] | select(.dst == "default").gateway' guest2b nc -4 -l 10004 > msg guest1 echo "Hello_from_guest_1" | nc -N __GW1__ 10004 guest2w -sleep 1 +sleep 1 g2out MSG2 cat msg check [ "__MSG2__" = "Hello_from_guest_1" ] @@ -56,7 +56,7 @@ g2out GW2_6 ip -j -6 ro sh|jq -rM '.[] | select(.dst == "default").gateway' guest1b nc -6 -l 10001 > msg guest2 echo "Hello_from_guest_2" | nc -N __GW2_6__%__IFNAME2__ 10001 guest1w -sleep 1 +sleep 1 g1out MSG1 cat msg check [ "__MSG1__" = "Hello_from_guest_2" ] @@ -64,7 +64,7 @@ test UDP/IPv4: guest 1 > guest 2 guest2b nc -u -W1 -4 -l 10004 > msg guest1 echo "Hello_from_guest_1" | nc -u -q1 __GW1__ 10004 guest2w -sleep 1 +sleep 1 g2out MSG2 cat msg check [ "__MSG2__" = "Hello_from_guest_1" ] @@ -72,6 +72,6 @@ test UDP/IPv6: guest 2 > guest 1 guest1b nc -u -W1 -6 -l 10001 > msg guest2 echo "Hello_from_guest_2" | nc -u -q1 -N __GW2_6__%__IFNAME2__ 10001 guest1w -sleep 1 +sleep 1 g1out MSG1 cat msg check [ "__MSG1__" = "Hello_from_guest_2" ] |