From 1b510aa442d992b9983282abfad5743ac0e9be54 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 10 Jan 2007 13:22:50 +0100 Subject: [PATCH] Fix t1410 for core.filemode==false Since c869753e, core.filemode is hardwired to false on Cygwin. So this test had no chance to succeed, since an early commit (changing just the filemode) failed, and therefore all subsequent tests. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- t/t1410-reflog.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/t/t1410-reflog.sh b/t/t1410-reflog.sh index 738d1513d4..8e8d526ef2 100755 --- a/t/t1410-reflog.sh +++ b/t/t1410-reflog.sh @@ -71,6 +71,8 @@ test_expect_success setup ' check_fsck && chmod +x C && + ( test "`git repo-config --bool core.filemode`" != false || + echo executable >>C ) && git add C && test_tick && git commit -m dragon && L=`git rev-parse --verify HEAD` && -- 2.11.4.GIT