blob: 5e04dc8f49cac8962fa0511e54795fe73225fe66 [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
19 @echo "SRCDIR=@srcdir@" >> test_script
20 @cat $(srcdir)/test_script.in >> test_script
21 @chmod +x test_script
22
23check:: test_script
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000024 @echo "Running e2fsprogs test suite..."
25 @echo " "
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000026 @./test_script
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000027
28clean::
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000029 $(RM) -f *.log *.new *.failed *.ok test.img test_script
Theodore Ts'oa418d3a1997-04-26 14:00:26 +000030
31distclean:: clean
32 $(RM) -f Makefile
33