From f2734ce8254dbaaf82f22ec61ba9ae296d0624ae Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 6 Feb 2012 20:57:29 +0400 Subject: [PATCH] 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 Signed-off-by: Andrey Vagin --- test/zdtm.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/test/zdtm.sh b/test/zdtm.sh index 3b58feb32..9364bac89 100644 --- a/test/zdtm.sh +++ b/test/zdtm.sh @@ -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 }