blob: 37a043ea657e6e292f450f83c8447295a7c1cf64 [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
JP Abgralle0ed7402014-03-19 19:08:39 -070014all:: @DO_TEST_SUITE@ test_one test_script
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000015
JP Abgralle0ed7402014-03-19 19:08:39 -070016test_one: $(srcdir)/test_one.in Makefile mke2fs.conf
17 @echo "Creating test_one script..."
18 @echo "#!/bin/sh" > test_one
19@HTREE_CMT@ @echo "HTREE=y" >> test_one
20@QUOTA_CMT@ @echo "QUOTA=y" >> test_one
21 @echo "SRCDIR=@srcdir@" >> test_one
22 @echo "DIFF_OPTS=@UNI_DIFF_OPTS@" >> test_one
23 @cat $(srcdir)/test_one.in >> test_one
24 @chmod +x test_one
25
26test_script: test_one test_script.in Makefile mke2fs.conf
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000027 @echo "Creating test_script..."
28 @echo "#!/bin/sh" > test_script
29 @echo "SRCDIR=@srcdir@" >> test_script
30 @cat $(srcdir)/test_script.in >> test_script
31 @chmod +x test_script
32
Theodore Ts'oedc18942010-05-14 20:18:11 -040033mke2fs.conf: $(srcdir)/mke2fs.conf.in
34 $(CP) $(srcdir)/mke2fs.conf.in mke2fs.conf
Theodore Ts'o3d438362008-02-19 08:32:58 -050035
JP Abgralle0ed7402014-03-19 19:08:39 -070036.PHONY : test_pre test_post check always_run
37
38TESTS=$(wildcard $(srcdir)/[a-z]_*)
39$(TESTS):: test_one always_run
40 @./test_one $@
41
42test_pre:
43 @$(RM) -f *.failed
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000044 @echo "Running e2fsprogs test suite..."
45 @echo " "
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000046
JP Abgralle0ed7402014-03-19 19:08:39 -070047test_post: test_pre $(TESTS)
48 @$(srcdir)/test_post
49
50check:: test_pre test_post test_script
51
52check-failed: $(basename $(wildcard *.failed))
53 @$(srcdir)/test_post
Theodore Ts'o52325592006-11-11 09:45:50 -050054
55
Andreas Dilgerf10ff642002-01-06 21:58:52 -070056TDIR=f_testnew
57# Target which creates a new testcase to simplify adding new regression tests.
58testnew:
59 @echo "Creating a new e2fsck testcase in ${TDIR}"
60 @mkdir -p ${TDIR}
61 dd if=/dev/zero of=${TDIR}/image bs=1k count=8k
JP Abgralle0ed7402014-03-19 19:08:39 -070062 $(top_srcdir)/misc/mke2fs -j -F -N 256 ${TDIR}/image
Andreas Dilgerf10ff642002-01-06 21:58:52 -070063 @echo "new test description" > ${TDIR}/name
64 @echo; echo; echo "New test filesystem at ${TDIR}/image."
65 @echo "Now, break the filesystem as appropriate, and run 'make testend'"
66
67EXPECT1=${TDIR}/expect.1
68EXPECT2=${TDIR}/expect.2
69# Target which generates the expect files for the new testcase.
JP Abgralle0ed7402014-03-19 19:08:39 -070070testend: test_one ${TDIR}/image
Andreas Dilgerf10ff642002-01-06 21:58:52 -070071 gzip -9 ${TDIR}/image
JP Abgralle0ed7402014-03-19 19:08:39 -070072 @OUT1=${EXPECT1} OUT2=${EXPECT2} ./test_one ${TDIR}
Andreas Dilgerf10ff642002-01-06 21:58:52 -070073 @echo; echo; echo "*** output from first e2fsck run (${EXPECT1}) ***"
74 @cat ${EXPECT1}
75 @echo "*** output from second e2fsck run (${EXPECT2}) ***"
76 @cat ${EXPECT2}
77 @echo "*** end of e2fsck output ***"
78 @echo; echo "Hopefully e2fsck now fixes this problem properly."
79 @echo "If all is well, edit ${TDIR}/name and rename ${TDIR}."
80
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000081clean::
JP Abgralle0ed7402014-03-19 19:08:39 -070082 $(RM) -f *~ *.log *.new *.failed *.ok *.tmp test_one test_script mke2fs.conf
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000083
84distclean:: clean
85 $(RM) -f Makefile
Andreas Dilgerf10ff642002-01-06 21:58:52 -070086 $(RM) -rf ${TDIR}