diff options
author | Johannes Sixt <j6t@kdbg.org> | 2009-03-13 22:55:27 +0100 |
---|---|---|
committer | Johannes Sixt <j6t@kdbg.org> | 2009-03-22 17:26:44 +0100 |
commit | ee9fb68c392cc76cf2a56762eb1c0712ae722f08 (patch) | |
tree | d3356ffbcd79eb8d345aa718e2d45354f3b82bd5 /t/t7503-pre-commit-hook.sh | |
parent | 2718e852e9baf98c128aafc508e85b610decad25 (diff) | |
download | git-ee9fb68c392cc76cf2a56762eb1c0712ae722f08.tar.gz |
Skip tests that require a filesystem that obeys POSIX permissions
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Diffstat (limited to 't/t7503-pre-commit-hook.sh')
-rwxr-xr-x | t/t7503-pre-commit-hook.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t7503-pre-commit-hook.sh b/t/t7503-pre-commit-hook.sh index b069095995..8528f64c8d 100755 --- a/t/t7503-pre-commit-hook.sh +++ b/t/t7503-pre-commit-hook.sh @@ -69,7 +69,7 @@ test_expect_success '--no-verify with failing hook' ' ' chmod -x "$HOOK" -test_expect_success 'with non-executable hook' ' +test_expect_success POSIXPERM 'with non-executable hook' ' echo "content" >> file && git add file && @@ -77,7 +77,7 @@ test_expect_success 'with non-executable hook' ' ' -test_expect_success '--no-verify with non-executable hook' ' +test_expect_success POSIXPERM '--no-verify with non-executable hook' ' echo "more content" >> file && git add file && |