t9200: do not test -x bit if the filesystem does not support it.
The last test in t9200 wants to see if executable bit is retained, which has no chance of succeeding on a filesystem that does not handle executable bit correctly. Signed-off-by: Junio C Hamano <junkio@cox.net>maint
parent
1a91ebf917
commit
3c23d66fc3
|
@ -197,6 +197,10 @@ test_expect_success \
|
||||||
! git-cvsexportcommit -c $id
|
! git-cvsexportcommit -c $id
|
||||||
)'
|
)'
|
||||||
|
|
||||||
|
case "$(git repo-config --bool core.filemode)" in
|
||||||
|
false)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
test_expect_success \
|
test_expect_success \
|
||||||
'Retain execute bit' \
|
'Retain execute bit' \
|
||||||
'mkdir G &&
|
'mkdir G &&
|
||||||
|
@ -211,5 +215,7 @@ test_expect_success \
|
||||||
test -x G/on &&
|
test -x G/on &&
|
||||||
! test -x G/off
|
! test -x G/off
|
||||||
)'
|
)'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
|
Loading…
Reference in New Issue