Don't skip this test on new-enough Linux/GNU systems.
authorJim Meyering <jim@meyering.net>
Sat, 24 Feb 2007 19:57:14 +0000 (20:57 +0100)
committerJim Meyering <jim@meyering.net>
Sat, 24 Feb 2007 19:57:14 +0000 (20:57 +0100)
* tests/misc/pwd-unreadable-parent: Test $REPLACE_GETCWD = 0,
rather than for __GETCWD_PREFIX in config.h (the latter is no
longer defined, ever, due to gnulib changes).
* tests/misc/Makefile.am (TESTS_ENVIRONMENT): Define REPLACE_GETCWD.

ChangeLog
tests/misc/Makefile.am
tests/misc/pwd-unreadable-parent

index 1ffa301..e26e27f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2007-02-24  Jim Meyering  <jim@meyering.net>
 
+       Don't skip this test on new-enough Linux/GNU systems.
+       * tests/misc/pwd-unreadable-parent: Test $REPLACE_GETCWD = 0,
+       rather than for __GETCWD_PREFIX in config.h (the latter is no
+       longer defined, ever, due to gnulib changes).
+       * tests/misc/Makefile.am (TESTS_ENVIRONMENT): Define REPLACE_GETCWD.
+
        Remove the "gnits" option; it prohibits my using "+" as a version
        string suffix, and all it does (beyond the default "gnu" option)
        is to _require_ the THANKS file.
index 425d6e3..4372850 100644 (file)
@@ -29,6 +29,7 @@ TESTS_ENVIRONMENT = \
   CU_TEST_NAME=`basename $(abs_srcdir)`,$$tst \
   PATH="$(VG_PATH_PREFIX)`pwd`/../../src$(PATH_SEPARATOR)$$PATH" \
   CONFIG_HEADER=$(CONFIG_HEADER) \
+  REPLACE_GETCWD=$(REPLACE_GETCWD) \
   PROG=`../../src/basename -- "$$tst"`
 
 # Do not choose a name that is a shell keyword like 'if', or a
index 35d4f18..ace73f9 100755 (executable)
@@ -28,10 +28,9 @@ fi
 
 skip=1
 # Run this test IFF:
-# if __GETCWD_PREFIX is not defined (system getcwd is good enough)
+# if REPLACE_GETCWD is 0 (system getcwd is good enough)
 #   or HAVE_PARTLY_WORKING_GETCWD is defined
-grep '^/\* #undef __GETCWD_PREFIX ' $CONFIG_HEADER > /dev/null &&
-  skip=0
+test $REPLACE_GETCWD = 0 && skip=0
 test $skip = 1 &&
   grep '^#define HAVE_PARTLY_WORKING_GETCWD ' $CONFIG_HEADER > /dev/null &&
     skip=0