mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 18:25:14 +00:00
== is a bashism, we should use = for /bin/sh; this prevents output like: /home/ubuntu/criu/test/post-dump.sh: 3: [: post-dump: unexpected operator /home/ubuntu/criu/test/post-dump.sh: 3: [: network-unlock: unexpected operator Signed-off-by: Tycho Andersen <tycho.andersen@canonical.com> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
9 lines
190 B
Bash
Executable file
9 lines
190 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ "$CRTOOLS_SCRIPT_ACTION" = post-dump ] || exit 0
|
|
|
|
#
|
|
# Special code to inform zdtm that we're
|
|
# done and should proceed testing treating
|
|
# non-zero return as known case.
|
|
exit 32
|