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