mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-25 11:04:35 +00:00
In some old distros -m state doesn't work correctly and test fails because test output diverges from expected results. Here we replace obsoleted -m state with -m conntrack. travis-ci: success for series starting with [v2,1/2] test: replace cat in Makefiles with awk Signed-off-by: Vitaly Ostrosablin <vostrosablin@virtuozzo.com> Reviewed-by: Cyrill Gorcunov <gorcunov@openvz.org> Reviewed-by: Dmitry Safonov <dsafonov@virtuozzo.com> Acked-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
57 lines
972 B
Bash
Executable file
57 lines
972 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
export PATH=$PATH:${0%/*}/../../lib
|
|
|
|
die()
|
|
{
|
|
echo "$0:${BASH_LINENO[0]}: $*" >&2
|
|
exit 1
|
|
}
|
|
|
|
fail()
|
|
{
|
|
echo "FAIL: $0:${BASH_LINENO[0]}: $*" > "$outfile"
|
|
exit 1
|
|
}
|
|
|
|
do_or_fail()
|
|
{
|
|
local failmsg="$1" output
|
|
shift
|
|
output="$(eval $@ 2>&1)" ||
|
|
fail "$failmsg: $output"
|
|
}
|
|
|
|
do_start()
|
|
{
|
|
[ -f "$statefile" ] && die "state file $statefile aleady exists"
|
|
|
|
do_or_fail "can't install a state match" \
|
|
iptables -A INPUT \
|
|
-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
|
|
|
|
do_or_fail "can't list the loaded iptables" \
|
|
iptables -L \> "$statefile"
|
|
}
|
|
|
|
do_stop()
|
|
{
|
|
do_or_fail "can't compare the iptables" \
|
|
iptables -L \| diff -u "$statefile" -
|
|
|
|
rm -f "$statefile"
|
|
|
|
echo "PASS" > $outfile
|
|
}
|
|
|
|
tmpargs="$(../lib/parseargs.sh --name=$0 \
|
|
--flags-req=statefile,outfile \
|
|
--flags-opt="start,stop" -- "$@")" ||
|
|
die "can't parse command line"
|
|
eval "$tmpargs"
|
|
|
|
[ -f "$outfile" ] && die "out file $outfile aleady exists"
|
|
|
|
# expect "start" or "stop"
|
|
do_$1
|