(lustar01.at,lustar02.at,lustar03.at): New tests.
[debian/tar] / tests / Makefile.am
1 # Makefile for GNU tar regression tests.
2
3 # Copyright (C) 1996, 1997, 1999, 2000, 2001, 2003, 2004, 2005 Free Software
4 # Foundation, Inc.
5
6 # François Pinard <pinard@iro.umontreal.ca>, 1988.
7 # Sergey Poznyakoff <gray@mirddin.farlep.net>, 2004.
8
9 ## This program is free software; you can redistribute it and/or modify
10 ## it under the terms of the GNU General Public License as published by
11 ## the Free Software Foundation; either version 2, or (at your option)
12 ## any later version.
13
14 ## This program is distributed in the hope that it will be useful,
15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ## GNU General Public License for more details.
18
19 ## You should have received a copy of the GNU General Public License
20 ## along with this program; if not, write to the Free Software
21 ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 ## 02110-1301, USA.
23
24 EXTRA_DIST = $(TESTSUITE_AT) testsuite package.m4 star/README star/quicktest.sh
25 DISTCLEANFILES       = atconfig $(check_SCRIPTS)
26 MAINTAINERCLEANFILES = Makefile.in $(TESTSUITE)
27
28 ## ------------ ##
29 ## package.m4.  ##
30 ## ------------ ##
31
32 $(srcdir)/package.m4: $(top_srcdir)/configure.ac
33         {                                      \
34           echo '# Signature of the current package.'; \
35           echo 'm4_define([AT_PACKAGE_NAME],      [@PACKAGE_NAME@])'; \
36           echo 'm4_define([AT_PACKAGE_TARNAME],   [@PACKAGE_TARNAME@])'; \
37           echo 'm4_define([AT_PACKAGE_VERSION],   [@PACKAGE_VERSION@])'; \
38           echo 'm4_define([AT_PACKAGE_STRING],    [@PACKAGE_STRING@])'; \
39           echo 'm4_define([AT_PACKAGE_BUGREPORT], [@PACKAGE_BUGREPORT@])'; \
40         } >$(srcdir)/package.m4
41
42 #
43
44 ## ------------ ##
45 ## Test suite.  ##
46 ## ------------ ##
47
48 TESTSUITE_AT = \
49  testsuite.at\
50  append.at\
51  append01.at\
52  comprec.at\
53  delete01.at\
54  delete02.at\
55  delete03.at\
56  delete04.at\
57  delete05.at\
58  extrac01.at\
59  extrac02.at\
60  extrac03.at\
61  extrac04.at\
62  extrac05.at\
63  gzip.at\
64  incremental.at\
65  incr01.at\
66  incr02.at\
67  ignfail.at\
68  link01.at\
69  listed01.at\
70  listed02.at\
71  long01.at\
72  longv7.at\
73  lustar01.at\
74  lustar02.at\
75  lustar03.at\
76  multiv01.at\
77  multiv02.at\
78  multiv03.at\
79  multiv04.at\
80  old.at\
81  options.at\
82  options02.at\
83  pipe.at\
84  recurse.at\
85  same-order01.at\
86  same-order02.at\
87  shortrec.at\
88  sparse01.at\
89  sparse02.at\
90  sparse03.at\
91  sparsemv.at\
92  sparsemvp.at\
93  truncate.at\
94  update.at\
95  volume.at\
96  version.at\
97  star/gtarfail.at\
98  star/gtarfail2.at\
99  star/multi-fail.at\
100  star/ustar-big-2g.at\
101  star/ustar-big-8g.at\
102  star/pax-big-10g.at
103
104 TESTSUITE = $(srcdir)/testsuite
105
106 AUTOTEST = $(AUTOM4TE) --language=autotest
107 $(TESTSUITE): package.m4 $(TESTSUITE_AT)
108         $(AUTOTEST) -I $(srcdir) testsuite.at -o $@.tmp
109         mv $@.tmp $@
110
111 atconfig: $(top_builddir)/config.status
112         cd $(top_builddir) && ./config.status tests/$@
113
114 clean-local:
115         test ! -f $(TESTSUITE) || $(SHELL) $(TESTSUITE) --clean
116
117 check-local: atconfig atlocal $(TESTSUITE)
118         $(SHELL) $(TESTSUITE)
119
120 #check_SCRIPTS = tar
121
122 # Run the test suite on the *installed* tree.
123 installcheck-local:
124         $(SHELL) $(TESTSUITE) AUTOTEST_PATH=$(exec_prefix)/bin
125
126
127 ## ------------ ##
128 ## genfile      ##
129 ## ------------ ##
130
131 check_PROGRAMS = genfile
132
133 genfile_SOURCES = genfile.c argcv.c argcv.h
134
135 localedir = $(datadir)/locale
136 INCLUDES = -I$(top_srcdir)/lib -I../lib -I$(top_srcdir)/src
137
138 LDADD = ../lib/libtar.a $(LIBINTL) $(LIB_CLOCK_GETTIME)