diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2022-05-12 16:43:33 +1000 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-05-19 15:24:15 +0200 |
commit | 21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e (patch) | |
tree | a8cb305aeed4f76cebbbfa98deba210a83447193 /test/icmp/passt_in_ns | |
parent | 4643b9b74c844cced27b3d04d3fcb69d51de8d28 (diff) | |
download | passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.tar passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.tar.gz passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.tar.bz2 passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.tar.lz passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.tar.xz passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.tar.zst passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.zip |
tests: Simplify explicit checks for command success
A number of individual test cases use '*out' commands to check for success
of specific commands they've issued. Now that the test harness is testing
for success of all issued commands as a matter of course, we no longer need
to do this.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'test/icmp/passt_in_ns')
-rw-r--r-- | test/icmp/passt_in_ns | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/icmp/passt_in_ns b/test/icmp/passt_in_ns index be5be29..38a9a4f 100644 --- a/test/icmp/passt_in_ns +++ b/test/icmp/passt_in_ns @@ -24,14 +24,10 @@ test ICMP echo: guest to ns nsout IFNAME_NS ip -j li sh | jq -rM '.[] | select(.link_type == "ether").ifname' ns ip addr add 192.0.2.1/32 dev __IFNAME_NS__ guest ping -c1 -w1 192.0.2.1 -gout RET echo $? ns ip addr del 192.0.2.1/32 dev __IFNAME_NS__ -check [ __RET__ -eq 0 ] test ICMPv6 echo: guest to ns ns ip addr add 2001:db8::1 dev __IFNAME_NS__ && sleep 2 # DAD gout IFNAME ip -j li sh | jq -rM '.[] | select(.link_type == "ether").ifname' guest ping -c1 -w1 2001:db8::1 -gout RET echo $? ns ip addr del 2001:db8::1 dev __IFNAME_NS__ -check [ __RET__ -eq 0 ] |