From 0f30deb3b0afa0b2949ba4cb3af988275ce7f998 Mon Sep 17 00:00:00 2001 From: Andreas Dilger Date: Sun, 18 Mar 2012 23:48:45 -0400 Subject: [PATCH] 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 Signed-off-by: Theodore Ts'o --- tests/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile.in b/tests/Makefile.in index 148813e..9dd1034 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'" -- 1.8.3.1