2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-30 22:05:36 +00:00

test/zdtm.sh: formatting fix

Put echo to a separate line to
- keep the text within 80 columns
- visually check that the positions of semicolons are the same

Signed-off-by: Kir Kolyshkin <kir@openvz.org>
Signed-off-by: Andrey Vagin <avagin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2012-02-06 20:57:29 +04:00
committed by Andrey Vagin
parent 060fb6fed2
commit f2734ce825

View File

@@ -88,9 +88,12 @@ case_error()
echo "Test: $test"
echo "====================== ERROR ======================"
[ -e "$DUMP_PATH/dump.log" ] && echo "Dump log : $DUMP_PATH/dump.log"
[ -e "$DUMP_PATH/restore.log" ] && echo "Restore log: $DUMP_PATH/restore.log"
[ -e "$test_log" ] && echo "Output file: $test_log"
[ -e "$DUMP_PATH/dump.log" ] &&
echo "Dump log : $DUMP_PATH/dump.log"
[ -e "$DUMP_PATH/restore.log" ] &&
echo "Restore log: $DUMP_PATH/restore.log"
[ -e "$test_log" ] &&
echo "Output file: $test_log"
exit 1
}