test-lib.sh: set prerequisite SANITY by testing what we really need
commitf400e51c13eb4143e420d41d9b415d4f5ddbdb85
authorTorsten Bögershausen <tboegi@web.de>
Tue, 27 Jan 2015 15:39:01 +0000 (27 16:39 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sun, 15 Feb 2015 23:48:38 +0000 (15 15:48 -0800)
treeaf669aea9c3316ce32f2499f6b23928ab6955e99
parenteae69530ae3915d54f660d56cc3f92dd6bed03ae
test-lib.sh: set prerequisite SANITY by testing what we really need

What we wanted out of the SANITY precondition is that the filesystem
behaves sensibly with permission bits settings.

 - You should not be able to remove a file in a read-only directory,

 - You should not be able to tell if a file in a directory exists if
   the directory lacks read or execute permission bits.

We used to cheat by approximating that condition with "is the /
writable?" test and/or "are we running as root?" test.  Neither test
is sufficient or appropriate in environments like Cygwin.

Signed-off-by: Torsten Bögershausen <tboegi@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/test-lib.sh