diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-06-04 17:26:14 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-06-04 17:26:14 +0000 |
commit | 4a477505468c669318cb67db2de9e8b47cd82d72 (patch) | |
tree | 8b7ec6fbaaa1e9c2e7dfb71962b50c3ba713536d /tests | |
parent | cf4875c61a3ddacb6dce4921a259eccf90072111 (diff) |
Fixed 'TESTS = *.test' breaking automake 1.13 for an unknown reason. Let's enumerate all files explicitely then ...
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Makefile.in b/tests/Makefile.in index eb2ffe8..20430b2 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -182,7 +182,8 @@ target_alias = @target_alias@ EXTRA_DIST = $(TESTS) crawl-test.sh run-all-tests.sh TESTS_ENVIRONMENT = $(SHLIBPATH_VAR)="$(top_builddir)/src/$(LT_CV_OBJDIR)$${$(SHLIBPATH_VAR):+:}$$$(SHLIBPATH_VAR)" \ PATH=$(top_builddir)/src/$(LT_CV_OBJDIR):$$PATH -TESTS = *.test +TEST_EXTENSIONS = .test +TESTS = 00_runnable.test 01_engine-charset.test 01_engine-entities.test 01_engine-idna.test 01_engine-simplify.test 10_crawl-simple.test 11_crawl-idna.test 11_crawl-international.test 11_crawl-parsing.test all: all-am .SUFFIXES: |