[PATCH 07/16] t5304: use test_path_is_* instead of test -f

2014-10-03 Thread Jeff King
This is slightly more robust (checking ! test -f would not notice a directory of the same name, though that is not likely to happen here). It also makes debugging easier, as the test script will output a message on failure. Signed-off-by: Jeff King p...@peff.net --- This patch is totally

Re: [PATCH 07/16] t5304: use test_path_is_* instead of test -f

2014-10-03 Thread Junio C Hamano
Jeff King p...@peff.net writes: This is slightly more robust (checking ! test -f would not notice a directory of the same name, though that is not likely to happen here). It also makes debugging easier, as the test script will output a message on failure. Signed-off-by: Jeff King