root/Makefile.am

Revision 03be3fd1811b0b0f9348760cae484adacfc69998, 444 bytes (checked in by Hans Petter Jansson <hpj@gong.(none)>, 2 years ago)

Allow commenting out tests from tests.list using '#'.

  • Property mode set to 100644
Line 
1 SUBDIRS = flow test example doc
2
3 EXTRA_DIST =                \
4         flow.spec           \
5         flow.spec.in
6
7 BUILT_EXTRA_DIST =          \
8         gtk-doc.make
9
10 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
11
12 check-local:
13         @echo
14         @echo '*** '
15         @echo '*** Running tests'
16         @echo '*** '
17         @echo
18         @for i in `grep "^[^#]" $(top_srcdir)/test/tests.list`; \
19   do \
20     if ! $(top_builddir)/test/$$i; then \
21       exit 1; \
22     fi; \
23   done
24         @echo
Note: See TracBrowser for help on using the browser.