From: Theodore Ts'o Date: Thu, 25 May 2000 16:40:54 +0000 (+0000) Subject: ChangeLog, test_script.in: X-Git-Tag: E2FSPROGS-1_19~44 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=93d29696dfb81a1203de2859626a95ca1e467dbe;p=tools%2Fe2fsprogs.git ChangeLog, test_script.in: test_script.in: Ignore files in the test directory (to avoid spurious messages when builddir==srcdir). --- diff --git a/tests/ChangeLog b/tests/ChangeLog index 474cae8..c1ed44d 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2000-05-25 + + * test_script.in: Ignore files in the test directory (to avoid + spurious messages when builddir==srcdir). + 2000-05-08 Theodore Ts'o * f_hurd: Add test for Hurd-specific features (right now, just diff --git a/tests/test_script.in b/tests/test_script.in index fb6a848..4971afd 100644 --- a/tests/test_script.in +++ b/tests/test_script.in @@ -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;