X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=test%2Fns-ping.test;h=8e10d11ed064b331725ff12ce46490899aea5011;hb=bf7abd5a059d27dc544b435b67f7f1d5419d318b;hp=54a9199c17e476ae83b0d8b20286210c63b2cbc8;hpb=4fbaf80d56a418ebd23eeace9053fa8f20097f77;p=tinc diff --git a/test/ns-ping.test b/test/ns-ping.test index 54a9199c..8e10d11e 100755 --- a/test/ns-ping.test +++ b/test/ns-ping.test @@ -1,11 +1,8 @@ #!/bin/sh -# shellcheck source=testlib.sh . ./testlib.sh -echo "[STEP] Skip this test if we aren't root or if 'ip netns' does not exist" - -test "$(id -u)" = "0" || exit $EXIT_SKIP_TEST +require_root "$0" "$@" test -e /dev/net/tun || exit $EXIT_SKIP_TEST ip netns list || exit $EXIT_SKIP_TEST @@ -13,6 +10,16 @@ ip_foo=192.168.1.1 ip_bar=192.168.1.2 mask=24 +echo [STEP] Create network namespaces + +ip netns add ping.test1 +ip netns add ping.test2 + +cleanup_hook() { + ip netns del ping.test1 + ip netns del ping.test2 +} + echo [STEP] Initialize two nodes tinc foo <