diff options
author | Andreas Dilger <adilger@whamcloud.com> | 2012-03-18 23:48:45 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2012-03-18 23:48:45 -0400 |
commit | 0f30deb3b0afa0b2949ba4cb3af988275ce7f998 (patch) | |
tree | 42bd56120a18ffd2698f537c3a4be1c21b7ac74a /tests | |
parent | b0e91c89257d906324d6081c952157f768dfc699 (diff) | |
download | e2fsprogs-0f30deb3b0afa0b2949ba4cb3af988275ce7f998.tar.gz e2fsprogs-0f30deb3b0afa0b2949ba4cb3af988275ce7f998.tar.xz e2fsprogs-0f30deb3b0afa0b2949ba4cb3af988275ce7f998.zip |
tests: have "make testnew" target use local mke2fs
The "make testnew" target in the tests/ subdirectory (used to
help create new test cases) should use the locally-built mke2fs
binary instead of the installed system binary, to avoid cases
where the system binary does not support some new functionality
being tested.
Signed-off-by: Andreas Dilger <adilger@whamcloud.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.in b/tests/Makefile.in index 148813e9..9dd10340 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -46,7 +46,7 @@ testnew: @echo "Creating a new e2fsck testcase in ${TDIR}" @mkdir -p ${TDIR} dd if=/dev/zero of=${TDIR}/image bs=1k count=8k - mke2fs -j -F -N 256 ${TDIR}/image + $(top_srcdir)/misc/mke2fs -j -F -N 256 ${TDIR}/image @echo "new test description" > ${TDIR}/name @echo; echo; echo "New test filesystem at ${TDIR}/image." @echo "Now, break the filesystem as appropriate, and run 'make testend'" |