t4012: Use test_must_fail instead of if-else
authorAlexander Strasser <eclipse7@gmx.net>
Mon, 16 Jul 2012 20:47:22 +0000 (22:47 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 16 Jul 2012 20:51:25 +0000 (13:51 -0700)
Make the code less bulky and easier to read. Also do not overlook
failures like e.g. git failing because of unexpected signals.

Signed-off-by: Alexander Strasser <eclipse7@gmx.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4012-diff-binary.sh
index 077870e95dda56b47d8cad2516402ab78a8d0c55..ec4deea1923919a88c6f1f9d35e11cb7737e323d 100755 (executable)
@@ -66,13 +66,7 @@ test_expect_success 'apply --numstat understands diff --binary format' '
 test_expect_success 'apply detecting corrupt patch correctly' '
        git diff >output &&
        sed -e "s/-CIT/xCIT/" <output >broken &&
-       if git apply --stat --summary broken 2>detected
-       then
-               echo unhappy - should have detected an error
-               (exit 1)
-       else
-               echo happy
-       fi &&
+       test_must_fail git apply --stat --summary broken 2>detected &&
        detected=`cat detected` &&
        detected=`expr "$detected" : "fatal.*at line \\([0-9]*\\)\$"` &&
        detected=`sed -ne "${detected}p" broken` &&
@@ -81,13 +75,7 @@ test_expect_success 'apply detecting corrupt patch correctly' '
 
 test_expect_success 'apply detecting corrupt patch correctly' '
        git diff --binary | sed -e "s/-CIT/xCIT/" >broken &&
-       if git apply --stat --summary broken 2>detected
-       then
-               echo unhappy - should have detected an error
-               (exit 1)
-       else
-               echo happy
-       fi &&
+       test_must_fail git apply --stat --summary broken 2>detected &&
        detected=`cat detected` &&
        detected=`expr "$detected" : "fatal.*at line \\([0-9]*\\)\$"` &&
        detected=`sed -ne "${detected}p" broken` &&