From: Johannes Schindelin Date: Wed, 10 Jan 2007 12:22:50 +0000 (+0100) Subject: Fix t1410 for core.filemode==false X-Git-Tag: v1.5.0-rc1~20 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/1b510aa442d992b9983282abfad5743ac0e9be54?ds=inline;hp=--cc 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 --- 1b510aa442d992b9983282abfad5743ac0e9be54 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` &&