OSDN Git Service

ChangeLog, test_script.in:
authorTheodore Ts'o <tytso@mit.edu>
Thu, 25 May 2000 16:40:54 +0000 (16:40 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 25 May 2000 16:40:54 +0000 (16:40 +0000)
  test_script.in: Ignore files in the test directory (to avoid spurious
   messages when builddir==srcdir).

tests/ChangeLog
tests/test_script.in

index 474cae8..c1ed44d 100644 (file)
@@ -1,3 +1,8 @@
+2000-05-25    <tytso@snap.thunk.org>
+
+       * test_script.in: Ignore files in the test directory (to avoid
+               spurious messages when builddir==srcdir).
+
 2000-05-08  Theodore Ts'o  <tytso@valinux.com>
 
        * f_hurd: Add test for Hurd-specific features (right now, just
index fb6a848..4971afd 100644 (file)
@@ -27,6 +27,9 @@ fi
 for test_dir in $TESTS
 do
        test_name=`echo $test_dir | sed -e 's;.*/;;'`
+       if [ -f $test_dir ] ; then
+           continue;
+       fi
        if [ ! -d $test_dir ] ; then
                echo "The test '$test_name' does not exist."
                continue;