pretty: --format output should honor logOutputEncoding
[gitweb.git] / t / t4012-diff-binary.sh
index 077870e95dda56b47d8cad2516402ab78a8d0c55..1215ae544b6915fe2cc6df4d193c8f3a805beba1 100755 (executable)
@@ -63,31 +63,19 @@ test_expect_success 'apply --numstat understands diff --binary format' '
 
 # apply needs to be able to skip the binary material correctly
 # in order to report the line number of a corrupt patch.
-test_expect_success 'apply detecting corrupt patch correctly' '
+test_expect_success C_LOCALE_OUTPUT '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` &&
        test "$detected" = xCIT
 '
 
-test_expect_success 'apply detecting corrupt patch correctly' '
+test_expect_success C_LOCALE_OUTPUT '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` &&