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/test-lib.sh | |
parent | t0060: Fix tests on Windows (diff) | |
download | git-ee9fb68c392cc76cf2a56762eb1c0712ae722f08.tar.xz git-ee9fb68c392cc76cf2a56762eb1c0712ae722f08.zip |
Skip tests that require a filesystem that obeys POSIX permissions
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Diffstat (limited to '')
-rw-r--r-- | t/test-lib.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 5337e89202..f134e73566 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -687,6 +687,10 @@ case $(uname -s) in pwd () { builtin pwd -W } + # no POSIX permissions + ;; +*) + test_set_prereq POSIXPERM ;; esac |