Skip to content
Snippets Groups Projects
Commit c61d40e8 authored by Austin Seipp's avatar Austin Seipp
Browse files

testsuite: look for tests-ghc directories for libraries


Who knows how long the tests for containers have been broken. They
haven't bitrotted, however.

Signed-off-by: default avatarAustin Seipp <austin@well-typed.com>
parent 41ab5841
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,9 @@ $(error base library does not seem to be installed)
endif
# Now find the "tests" directories of those libraries, where they exist
LIBRARY_TEST_PATHS := $(wildcard $(patsubst %, $(TOP)/../libraries/%/tests, $(LIBRARIES)))
LIBRARY_TEST_PATHS := $(wildcard $(patsubst %, $(TOP)/../libraries/%/tests, $(LIBRARIES))) \
$(wildcard $(patsubst %, $(TOP)/../libraries/%/tests-ghc, $(LIBRARIES)))
# Add tests from packages
RUNTEST_OPTS += $(patsubst %, --rootdir=%, $(LIBRARY_TEST_PATHS))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment