diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2006-01-05 12:55:03 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-01-05 17:23:44 -0800 |
commit | e58b97af31779a4db84877082ef619f0e3bd1d6c (patch) | |
tree | 5c7cb643825ac58de70e1225383d557da0948dea /t | |
parent | 31f883d1b8439b36d17ca79cf5eac992fb461f5a (diff) | |
download | git-e58b97af31779a4db84877082ef619f0e3bd1d6c.tar.gz git-e58b97af31779a4db84877082ef619f0e3bd1d6c.tar.xz |
trivial: use git-repo-config to detect if the test can be run on the repository
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't')
-rwxr-xr-x | t/t4000-diff-format.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t4000-diff-format.sh b/t/t4000-diff-format.sh index beb6d8f48..67b9681d3 100755 --- a/t/t4000-diff-format.sh +++ b/t/t4000-diff-format.sh @@ -26,6 +26,14 @@ rm -f path1 test_expect_success \ 'git-diff-files -p after editing work tree.' \ 'git-diff-files -p >current' + +# that's as far as it comes +if [ "$(git repo-config --get core.filemode)" = false ] +then + say 'filemode disabled on the filesystem' + test_done +fi + cat >expected <<\EOF diff --git a/path0 b/path0 old mode 100644 |