Makefile.in revision e0ed7404719a9ddd2ba427a80db5365c8bad18c0
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	@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
27	@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
33mke2fs.conf: $(srcdir)/mke2fs.conf.in
34	$(CP) $(srcdir)/mke2fs.conf.in mke2fs.conf
35
36.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
44	@echo "Running e2fsprogs test suite..."
45	@echo " "
46
47test_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
54
55
56TDIR=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
62	$(top_srcdir)/misc/mke2fs -j -F -N 256 ${TDIR}/image
63	@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.
70testend: test_one ${TDIR}/image
71	gzip -9 ${TDIR}/image
72	@OUT1=${EXPECT1} OUT2=${EXPECT2} ./test_one ${TDIR}
73	@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
81clean::
82	$(RM) -f *~ *.log *.new *.failed *.ok *.tmp test_one test_script mke2fs.conf
83
84distclean:: clean
85	$(RM) -f Makefile
86	$(RM) -rf ${TDIR}
87