blob: f9d5d781c98359379ab0eefbed4f514ea07b8aeb [file] [log] [blame]
Theodore Ts'oa418d3a1997-04-26 14:00:26 +00001#
2# Makefile for the tests directory
3#
4
5srcdir = @srcdir@
6top_srcdir = @top_srcdir@
7VPATH = @srcdir@
8top_builddir = ..
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00009my_dir = tests
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000010INSTALL = @INSTALL@
11
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000012@MCONFIG@
13
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000014all:: @DO_TEST_SUITE@
15
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000016test_script: test_script.in Makefile
17 @echo "Creating test_script..."
18 @echo "#!/bin/sh" > test_script
Theodore Ts'o8fdc9982002-06-25 23:26:34 -040019@HTREE_CMT@ @echo "HTREE=y" >> test_script
Theodore Ts'o32237012005-01-17 19:13:39 -050020 @echo 'EGREP="@EGREP@"' >> test_script
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000021 @echo "SRCDIR=@srcdir@" >> test_script
Theodore Ts'oe54635d2006-08-06 14:33:13 -040022 @echo "DIFF_OPTS=@UNI_DIFF_OPTS@" >> test_script
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000023 @cat $(srcdir)/test_script.in >> test_script
24 @chmod +x test_script
25
26check:: test_script
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000027 @echo "Running e2fsprogs test suite..."
28 @echo " "
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000029 @./test_script
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000030
Theodore Ts'o52325592006-11-11 09:45:50 -050031check-failed:
32 @a=`/bin/ls *.failed 2> /dev/null | sed -e 's/.failed//'`; \
33 if test "$$a"x == x ; then \
34 echo "No failed tests" ; \
35 else \
36 ./test_script $$a ; \
37 fi
38
39
Andreas Dilgerf10ff642002-01-06 21:58:52 -070040TDIR=f_testnew
41# Target which creates a new testcase to simplify adding new regression tests.
42testnew:
43 @echo "Creating a new e2fsck testcase in ${TDIR}"
44 @mkdir -p ${TDIR}
45 dd if=/dev/zero of=${TDIR}/image bs=1k count=8k
46 mke2fs -j -F -N 256 ${TDIR}/image
47 @echo "new test description" > ${TDIR}/name
48 @echo; echo; echo "New test filesystem at ${TDIR}/image."
49 @echo "Now, break the filesystem as appropriate, and run 'make testend'"
50
51EXPECT1=${TDIR}/expect.1
52EXPECT2=${TDIR}/expect.2
53# Target which generates the expect files for the new testcase.
54testend: test_script ${TDIR}/image
55 gzip -9 ${TDIR}/image
56 @OUT1=${EXPECT1} OUT2=${EXPECT2} ./test_script ${TDIR}
57 @echo; echo; echo "*** output from first e2fsck run (${EXPECT1}) ***"
58 @cat ${EXPECT1}
59 @echo "*** output from second e2fsck run (${EXPECT2}) ***"
60 @cat ${EXPECT2}
61 @echo "*** end of e2fsck output ***"
62 @echo; echo "Hopefully e2fsck now fixes this problem properly."
63 @echo "If all is well, edit ${TDIR}/name and rename ${TDIR}."
64
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000065clean::
Theodore Ts'ob7aa0d62005-02-05 15:48:49 -050066 $(RM) -f *~ *.log *.new *.failed *.ok test.img test_script
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000067
68distclean:: clean
69 $(RM) -f Makefile
Andreas Dilgerf10ff642002-01-06 21:58:52 -070070 $(RM) -rf ${TDIR}