summaryrefslogtreecommitdiff
path: root/t/t4124-apply-ws-rule.sh
diff options
context:
space:
mode:
authorJonathan Nieder <jrnieder@gmail.com>2010-10-31 07:41:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-11-09 23:20:44 (GMT)
commit33fc521193746a0961c270997dbb881b520ad793 (patch)
treedf3efbeecff9826bbe66aceab42cc30abb8dad40 /t/t4124-apply-ws-rule.sh
parent56641f199cc30fa0649ee0e3fa102782ca251d04 (diff)
downloadgit-33fc521193746a0961c270997dbb881b520ad793.zip
git-33fc521193746a0961c270997dbb881b520ad793.tar.gz
git-33fc521193746a0961c270997dbb881b520ad793.tar.bz2
t4124 (apply --whitespace): use test_might_fail
Use test_might_fail instead of ignoring the exit status from git config --unset, and let the exit status propagate past rm -f (which does not fail on ENOENT). Otherwise bugs that lead git config to crash would not be detected when this test runs. Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4124-apply-ws-rule.sh')
-rwxr-xr-xt/t4124-apply-ws-rule.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/t/t4124-apply-ws-rule.sh b/t/t4124-apply-ws-rule.sh
index 414b09b..61bfc56 100755
--- a/t/t4124-apply-ws-rule.sh
+++ b/t/t4124-apply-ws-rule.sh
@@ -176,9 +176,8 @@ test_expect_success 'trailing whitespace & no newline at the end of file' '
'
test_expect_success 'blank at EOF with --whitespace=fix (1)' '
- : these can fail depending on what we did before
- git config --unset core.whitespace
- rm -f .gitattributes
+ test_might_fail git config --unset core.whitespace &&
+ rm -f .gitattributes &&
{ echo a; echo b; echo c; } >one &&
git add one &&