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 test_data.tmp 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 test_data.tmp 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 40test_data.tmp: $(srcdir)/scripts/gen-test-data 41 $(srcdir)/scripts/gen-test-data > test_data.tmp 42 43.PHONY : test_pre test_post check always_run 44 45always_run: 46 47@ifGNUmake@TESTS=$(wildcard $(srcdir)/[a-z]_*) 48@ifNotGNUmake@TESTS != echo $(srcdir)/[a-z]_* 49 50SKIP_SLOW_TESTS=--skip-slow-tests 51 52$(TESTS):: test_one always_run 53 @./test_one $(SKIP_SLOW_TESTS) $@ 54 55foo: 56 echo $(TESTS) 57 58test_pre: 59 @$(RM) -f *.failed 60 @echo "Running e2fsprogs test suite..." 61 @echo " " 62 63test_post: test_pre $(TESTS) 64 @$(srcdir)/test_post 65 66check:: test_pre test_post test_script 67 68fullcheck:: 69 $(MAKE) SKIP_SLOW_TESTS= check 70 71check-failed: $(basename $(wildcard *.failed)) 72 @$(srcdir)/test_post 73 74 75TDIR=f_testnew 76# Target which creates a new testcase to simplify adding new regression tests. 77testnew: 78 @echo "Creating a new e2fsck testcase in ${TDIR}" 79 @mkdir -p ${TDIR} 80 dd if=/dev/zero of=${TDIR}/image bs=1k count=8k 81 $(top_srcdir)/misc/mke2fs -j -F -N 256 ${TDIR}/image 82 @echo "new test description" > ${TDIR}/name 83 @echo; echo; echo "New test filesystem at ${TDIR}/image." 84 @echo "Now, break the filesystem as appropriate, and run 'make testend'" 85 86EXPECT1=${TDIR}/expect.1 87EXPECT2=${TDIR}/expect.2 88# Target which generates the expect files for the new testcase. 89testend: test_one ${TDIR}/image 90 gzip -9 ${TDIR}/image 91 @OUT1=${EXPECT1} OUT2=${EXPECT2} ./test_one ${TDIR} 92 @echo; echo; echo "*** output from first e2fsck run (${EXPECT1}) ***" 93 @cat ${EXPECT1} 94 @echo "*** output from second e2fsck run (${EXPECT2}) ***" 95 @cat ${EXPECT2} 96 @echo "*** end of e2fsck output ***" 97 @echo; echo "Hopefully e2fsck now fixes this problem properly." 98 @echo "If all is well, edit ${TDIR}/name and rename ${TDIR}." 99 100clean:: 101 $(RM) -f *~ *.log *.new *.failed *.ok *.tmp *.slow 102 $(RM) -f test_one test_script mke2fs.conf test_data.tmp 103 104distclean:: clean 105 $(RM) -f Makefile 106 $(RM) -rf ${TDIR} 107