mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-22 17:49:13 +00:00
All scripts are executed for all actions, so if one of them failed for any actions, crtools returns with non-zero code. E.g: ./zdtm.sh -d ns/static/env00 Signed-off-by: Andrey Vagin <avagin@openvz.org> Acked-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
9 lines
191 B
Bash
Executable file
9 lines
191 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
|