]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t0003: avoid pipes with Git on LHS
authorShubham Mishra <shivam828787@gmail.com>
Wed, 23 Feb 2022 11:53:47 +0000 (17:23 +0530)
committerJunio C Hamano <gitster@pobox.com>
Wed, 23 Feb 2022 21:12:37 +0000 (13:12 -0800)
Pipes ignore error codes of LHS command and thus we should not use them
with Git in tests. As an alternative, use a 'tmp' file to write the Git
output so we can test the exit code.

Signed-off-by: Shubham Mishra <shivam828787@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t0003-attributes.sh

index b9ed612af13262c0467aed2be927bd4704a221e4..143f1005179c8afb11aba90e4d279b6d288c8a48 100755 (executable)
@@ -205,15 +205,18 @@ test_expect_success 'attribute test: read paths from stdin' '
 test_expect_success 'attribute test: --all option' '
        grep -v unspecified <expect-all | sort >specified-all &&
        sed -e "s/:.*//" <expect-all | uniq >stdin-all &&
-       git check-attr --stdin --all <stdin-all | sort >actual &&
+       git check-attr --stdin --all <stdin-all >tmp &&
+       sort tmp >actual &&
        test_cmp specified-all actual
 '
 
 test_expect_success 'attribute test: --cached option' '
-       git check-attr --cached --stdin --all <stdin-all | sort >actual &&
+       git check-attr --cached --stdin --all <stdin-all >tmp &&
+       sort tmp >actual &&
        test_must_be_empty actual &&
        git add .gitattributes a/.gitattributes a/b/.gitattributes &&
-       git check-attr --cached --stdin --all <stdin-all | sort >actual &&
+       git check-attr --cached --stdin --all <stdin-all >tmp &&
+       sort tmp >actual &&
        test_cmp specified-all actual
 '