1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# output error messages in English
export LC_MESSAGES=C
check: check-zombie check-newnet
check-zombie:
newpid ./zombie.pl 2>&1 | tee zombie.out
if grep -q 'version code' zombie.out; then sed -i -e '1,/version code/d' zombie.out; fi # remove "Non-standard uts for running kernel" on lucid
diff -ub zombie.expected zombie.out
check-newnet:
# remove time/rtt output for reproducibility
# iputils-ping 3:20190515-2 added a "ping: " prefix in front of errors, remove it for compatibility
( newpid -n ping -q -c 1 -n 127.0.0.1 2>&1 | sed -e 's/\(time\|rtt\).*//'; \
newpid -n ping -q -c 1 -n 192.0.2.1 2>&1 | sed -e 's/^ping: //' \
) | tee newnet.out
diff -u newnet.expected newnet.out
clean:
rm -f zombie.out newnet.out
|