From: Torsten Bögershausen Date: Sat, 8 Jun 2013 12:17:49 +0000 (+0200) Subject: t0070 "mktemp to unwritable directory" needs SANITY X-Git-Tag: v1.8.3.2~18^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/b3b8ceb48b7d75631a8638f1dc6ccdf7f1b53888?hp=--cc t0070 "mktemp to unwritable directory" needs SANITY Use the SANITY prerequisite when testing if a temp file can be created in a read only directory. Skip the test under CYGWIN, or skip it under Unix/Linux when it is run as root. Signed-off-by: Torsten Bögershausen Signed-off-by: Junio C Hamano --- b3b8ceb48b7d75631a8638f1dc6ccdf7f1b53888 diff --git a/t/t0070-fundamental.sh b/t/t0070-fundamental.sh index da2c504e53..986b2a8f26 100755 --- a/t/t0070-fundamental.sh +++ b/t/t0070-fundamental.sh @@ -17,7 +17,7 @@ test_expect_success 'mktemp to nonexistent directory prints filename' ' grep "doesnotexist/test" err ' -test_expect_success POSIXPERM 'mktemp to unwritable directory prints filename' ' +test_expect_success POSIXPERM,SANITY 'mktemp to unwritable directory prints filename' ' mkdir cannotwrite && chmod -w cannotwrite && test_when_finished "chmod +w cannotwrite" &&