diff options
author | Theodore Ts'o <tytso@mit.edu> | 2005-02-05 10:28:15 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2005-02-05 10:28:15 -0500 |
commit | 33db8f80f2b5c5c5d8cd5068205c79f0ea11905b (patch) | |
tree | 9e49d530c7fb00d71becf04953de3b72cc8e020d /tests | |
parent | 98919bdb2ec92be4bd469b71911daaef63787c92 (diff) | |
download | e2fsprogs-33db8f80f2b5c5c5d8cd5068205c79f0ea11905b.tar.gz |
Remove support for --enable-clear-htree; this was
only needed during the early development of the htree patch.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ChangeLog | 5 | ||||
-rw-r--r-- | tests/Makefile.in | 1 | ||||
-rw-r--r-- | tests/f_dup_de/script | 2 | ||||
-rw-r--r-- | tests/f_h_badnode/script | 2 | ||||
-rw-r--r-- | tests/f_h_badroot/script | 2 | ||||
-rw-r--r-- | tests/f_h_normal/script | 2 | ||||
-rw-r--r-- | tests/f_h_reindex/script | 2 |
7 files changed, 10 insertions, 6 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index a05d683d..63fbc499 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2005-02-05 Theodore Ts'o <tytso@mit.edu> + + * Makefile.in, f_h_badnode, f_dup_de, f_h_reindex, f_h_normal, + f_h_badroot: Remove support for --enable-htree-clear + 2005-01-28 Theodore Ts'o <tytso@mit.edu> * f_bad_inode, f_recnect_bad: Adjust test cases to take into diff --git a/tests/Makefile.in b/tests/Makefile.in index 945b1d65..46c44358 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -17,7 +17,6 @@ test_script: test_script.in Makefile @echo "Creating test_script..." @echo "#!/bin/sh" > test_script @HTREE_CMT@ @echo "HTREE=y" >> test_script -@HTREE_CLR_CMT@ @echo "HTREE_CLR=y" >> test_script @echo 'EGREP="@EGREP@"' >> test_script @echo "SRCDIR=@srcdir@" >> test_script @cat $(srcdir)/test_script.in >> test_script diff --git a/tests/f_dup_de/script b/tests/f_dup_de/script index 0cef9baa..84c8bfff 100644 --- a/tests/f_dup_de/script +++ b/tests/f_dup_de/script @@ -1,4 +1,4 @@ -if test "$HTREE"x = x -o "$HTREE_CLR"x = yx; then +if test "$HTREE"x = x ; then gunzip < $test_dir/image.gz > $TMPFILE $DEBUGFS -w -R "feature ^dir_index" $TMPFILE >/dev/null 2>&1 gzip $TMPFILE diff --git a/tests/f_h_badnode/script b/tests/f_h_badnode/script index 9353ec77..9eec0840 100644 --- a/tests/f_h_badnode/script +++ b/tests/f_h_badnode/script @@ -1,4 +1,4 @@ -if test "$HTREE"x = yx -a "$HTREE_CLR"x = x; then +if test "$HTREE"x = yx ; then . $cmd_dir/run_e2fsck else rm -f $test_name.ok $test_name.failed diff --git a/tests/f_h_badroot/script b/tests/f_h_badroot/script index 9353ec77..9eec0840 100644 --- a/tests/f_h_badroot/script +++ b/tests/f_h_badroot/script @@ -1,4 +1,4 @@ -if test "$HTREE"x = yx -a "$HTREE_CLR"x = x; then +if test "$HTREE"x = yx ; then . $cmd_dir/run_e2fsck else rm -f $test_name.ok $test_name.failed diff --git a/tests/f_h_normal/script b/tests/f_h_normal/script index 9353ec77..9eec0840 100644 --- a/tests/f_h_normal/script +++ b/tests/f_h_normal/script @@ -1,4 +1,4 @@ -if test "$HTREE"x = yx -a "$HTREE_CLR"x = x; then +if test "$HTREE"x = yx ; then . $cmd_dir/run_e2fsck else rm -f $test_name.ok $test_name.failed diff --git a/tests/f_h_reindex/script b/tests/f_h_reindex/script index 9353ec77..9eec0840 100644 --- a/tests/f_h_reindex/script +++ b/tests/f_h_reindex/script @@ -1,4 +1,4 @@ -if test "$HTREE"x = yx -a "$HTREE_CLR"x = x; then +if test "$HTREE"x = yx ; then . $cmd_dir/run_e2fsck else rm -f $test_name.ok $test_name.failed |