diff options
author | Johannes Sixt <j6t@kdbg.org> | 2009-06-22 09:30:38 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-06-22 00:44:14 -0700 |
commit | 1ab012cf811abba5745fa0da70db963decd65f21 (patch) | |
tree | 31155ff97873905e104db23ecab24b214b4b0629 | |
parent | Merge branch 'sb/maint-1.6.0-add-config-fix' into maint (diff) | |
download | tgif-1ab012cf811abba5745fa0da70db963decd65f21.tar.xz |
t3700-add: add a POSIXPERM prerequisite to a new test
The new test does a 'chmod 0', which does not have the intended
effect on Windows.
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t3700-add.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3700-add.sh b/t/t3700-add.sh index 32595fa30c..fe93ce52e7 100755 --- a/t/t3700-add.sh +++ b/t/t3700-add.sh @@ -223,7 +223,7 @@ test_expect_success POSIXPERM 'git add (add.ignore-errors = false)' ' ' rm -f foo2 -test_expect_success '--no-ignore-errors overrides config' ' +test_expect_success POSIXPERM '--no-ignore-errors overrides config' ' git config add.ignore-errors 1 && git reset --hard && date >foo1 && |