]> git.draconx.ca Git - dxcommon.git/blob - snippet/autotest.mk
b2baa2d09b4f45a2e5f019b636c9c9972898eb85
[dxcommon.git] / snippet / autotest.mk
1 # Copyright © 2015 Nick Bowler
2 #
3 # Automake fragment to hook up a basic Autotest test suite into the build.
4 # It is expected that a testsuite.at file exists in $(srcdir).  The
5 # testsuite will be output to $(builddir)/testsuite.
6 #
7 # You must define the AUTOTEST variable to the Autotest program (normally,
8 # this is autom4te -l autotest).  The DX_PROG_AUTOTEST macro can be used
9 # to set this automatically.  You must also define the HAVE_AUTOTEST Automake
10 # conditional which controls whether the testsuite-generating rules are
11 # enabled.  If DX_PROG_AUTOTEST is used, this may be set like:
12 #
13 #   DX_PROG_AUTOTEST
14 #   AM_CONDITIONAL([HAVE_AUTOTEST], [test x"$dx_cv_autotest_works" = x"yes"])
15 #
16 # License WTFPL2: Do What The Fuck You Want To Public License, version 2.
17 # This is free software: you are free to do what the fuck you want to.
18 # There is NO WARRANTY, to the extent permitted by law.
19
20 check-local: check-autotest
21 check-autotest: testsuite
22         $(SHELL) testsuite $(TESTSUITEFLAGS)
23 .PHONY: check-autotest
24
25 clean-local: clean-autotest
26 clean-autotest:
27         test ! -f testsuite || $(SHELL) testsuite --clean
28 .PHONY: clean-autotest
29
30 maintainer-clean-local: maintainer-clean-autotest
31 maintainer-clean-autotest:
32         rm -f testsuite package.m4
33 .PHONY: maintainerclean-autotest
34
35 package.m4:
36         $(AM_V_GEN) :; { \
37           printf 'm4_define([%s], [%s])\n' \
38             AT_PACKAGE_NAME      '$(PACKAGE_NAME)' \
39             AT_PACKAGE_TARNAME   '$(PACKAGE_TARNAME)' \
40             AT_PACKAGE_VERSION   '$(PACKAGE_VERSION)' \
41             AT_PACKAGE_STRING    '$(PACKAGE_STRING)' \
42             AT_PACKAGE_BUGREPORT '$(PACKAGE_BUGREPORT)' \
43             AT_PACKAGE_URL       '$(PACKAGE_URL)' \
44         ; } >$@.tmp
45         $(AM_V_at) mv -f $@.tmp $@
46
47 testsuite: testsuite.at package.m4
48 if !HAVE_AUTOTEST
49         @:; { \
50           printf 'ERROR: Autotest was not available at configure time.\n'; \
51           printf 'You should only need it if you modified the test suite.\n'; \
52           printf 'Autotest is part of autom4te, included in the GNU\n'; \
53           printf 'Autoconf package: <https://gnu.org/s/autoconf/>\n'; \
54         } 1>&2
55         @false
56 endif
57         $(AM_V_GEN) $(AUTOTEST) $(ATFLAGS) -p m4_include -o $@.tmp testsuite.at
58         $(AM_V_at) :; { \
59           $(AUTOTEST) $(ATFLAGS) -t m4_include:'$@: $$1' testsuite.at; \
60           $(AUTOTEST) $(ATFLAGS) -t m4_include:'$$1:' testsuite.at; \
61         } >$(DEPDIR)/$(@F).P
62         $(AM_V_at) mv -f $@.tmp $@
63
64 EXTRA_DIST += testsuite testsuite.at package.m4
65 @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/testsuite.P@am__quote@