grep: allow to use textconv filters
[gitweb.git] / t / t7008-grep-binary.sh
index 1c0946f8441f9c16ecd3176786d5061b4bc50dab..a91260a02a4825a3228884b14eeeaee332efa39f 100755 (executable)
@@ -160,7 +160,7 @@ test_expect_success 'grep does not honor textconv' '
        test_must_fail git grep Qfile
 '
 
-test_expect_failure 'grep --textconv honors textconv' '
+test_expect_success 'grep --textconv honors textconv' '
        echo "a:binaryQfile" >expect &&
        git grep --textconv Qfile >actual &&
        test_cmp expect actual
@@ -176,4 +176,8 @@ test_expect_failure 'grep --textconv blob honors textconv' '
        test_cmp expect actual
 '
 
+test_expect_success 'grep --no-textconv blob does not honor textconv' '
+       test_must_fail git grep --no-textconv Qfile HEAD:a
+'
+
 test_done