1# 2# Makefile for the tests directory 3# 4 5srcdir = @srcdir@ 6top_srcdir = @top_srcdir@ 7VPATH = @srcdir@ 8top_builddir = .. 9my_dir = tests 10INSTALL = @INSTALL@ 11 12@MCONFIG@ 13 14all:: @DO_TEST_SUITE@ test_one test_script 15 16test_one: $(srcdir)/test_one.in Makefile mke2fs.conf 17 @echo "Creating test_one script..." 18 @[ -f test_one ] && chmod u+w test_one || true 19 @echo "#!/bin/sh" > test_one 20 @echo "HTREE=y" >> test_one 21 @echo "QUOTA=y" >> test_one 22 @echo "SRCDIR=@srcdir@" >> test_one 23 @echo "DIFF_OPTS=@UNI_DIFF_OPTS@" >> test_one 24 @echo "SIZEOF_TIME_T=@SIZEOF_TIME_T@" >> test_one 25 @echo "DD=@DD@" >>test_one 26 @cat $(srcdir)/test_one.in >> test_one 27 @chmod +x-w test_one 28 29test_script: test_one test_script.in Makefile mke2fs.conf 30 @echo "Creating test_script..." 31 @[ -f test_script ] && chmod u+w test_script || true 32 @echo "#!/bin/sh" > test_script 33 @echo "SRCDIR=@srcdir@" >> test_script 34 @cat $(srcdir)/test_script.in >> test_script 35 @chmod +x-w test_script 36 37mke2fs.conf: $(srcdir)/mke2fs.conf.in 38 $(CP) $(srcdir)/mke2fs.conf.in mke2fs.conf 39 40.PHONY : test_pre test_post check always_run 41 42always_run: 43 44@ifGNUmake@TESTS=$(wildcard $(srcdir)/[a-z]_*) 45@ifNotGNUmake@TESTS != echo $(srcdir)/[a-z]_* 46 47SKIP_SLOW_TESTS=--skip-slow-tests 48 49$(TESTS):: test_one always_run 50 @./test_one $(SKIP_SLOW_TESTS) $@ 51 52foo: 53 echo $(TESTS) 54 55test_pre: 56 @$(RM) -f *.failed 57 @echo "Running e2fsprogs test suite..." 58 @echo " " 59 60test_post: test_pre $(TESTS) 61 @$(srcdir)/test_post 62 63check:: test_pre test_post test_script 64 65fullcheck:: 66 $(MAKE) SKIP_SLOW_TESTS= check 67 68check-failed: $(basename $(wildcard *.failed)) 69 @$(srcdir)/test_post 70 71 72TDIR=f_testnew 73# Target which creates a new testcase to simplify adding new regression tests. 74testnew: 75 @echo "Creating a new e2fsck testcase in ${TDIR}" 76 @mkdir -p ${TDIR} 77 dd if=/dev/zero of=${TDIR}/image bs=1k count=8k 78 $(top_srcdir)/misc/mke2fs -j -F -N 256 ${TDIR}/image 79 @echo "new test description" > ${TDIR}/name 80 @echo; echo; echo "New test filesystem at ${TDIR}/image." 81 @echo "Now, break the filesystem as appropriate, and run 'make testend'" 82 83EXPECT1=${TDIR}/expect.1 84EXPECT2=${TDIR}/expect.2 85# Target which generates the expect files for the new testcase. 86testend: test_one ${TDIR}/image 87 gzip -9 ${TDIR}/image 88 @OUT1=${EXPECT1} OUT2=${EXPECT2} ./test_one ${TDIR} 89 @echo; echo; echo "*** output from first e2fsck run (${EXPECT1}) ***" 90 @cat ${EXPECT1} 91 @echo "*** output from second e2fsck run (${EXPECT2}) ***" 92 @cat ${EXPECT2} 93 @echo "*** end of e2fsck output ***" 94 @echo; echo "Hopefully e2fsck now fixes this problem properly." 95 @echo "If all is well, edit ${TDIR}/name and rename ${TDIR}." 96 97clean:: 98 $(RM) -f *~ *.log *.new *.failed *.ok *.tmp *.slow 99 $(RM) -f test_one test_script mke2fs.conf test_data.tmp 100 101distclean:: clean 102 $(RM) -f Makefile 103 $(RM) -rf ${TDIR} 104