diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-06-30 19:46:13 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-06-30 19:46:13 +0200 |
commit | 848744c8189abdba50d0fdf5dbd2a713ac210632 (patch) | |
tree | ca0c4d8dc77894af41c12c334b9c9dec81d8e9c2 /t/autohdrdry.sh | |
parent | f99ee7616ced4d07684a30a67b72e46aba00c65f (diff) | |
download | automake-848744c8189abdba50d0fdf5dbd2a713ac210632.tar.gz |
tests: prefer "test ! -e FILE" to check that a file doesn't exist
* t/autohdrdry.sh: Here, rather than using "test ! -r FILE".
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/autohdrdry.sh')
-rwxr-xr-x | t/autohdrdry.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/autohdrdry.sh b/t/autohdrdry.sh index 3bd474ea0..af6c198d1 100755 --- a/t/autohdrdry.sh +++ b/t/autohdrdry.sh @@ -37,6 +37,6 @@ $MAKE rm -f config.h $MAKE -n test -f stamp-h1 -test ! -r config.h +test ! -e config.h : |