summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2019-12-03 16:48:34 -0600
committerGitHub <noreply@github.com>2019-12-03 16:48:34 -0600
commit4191fc9e5d65f31ca7538b2a585d251b3ba07ac3 (patch)
tree3d0dbefc2c8deb40a2e7aa2ddd8317a2681007f9 /Makefile
parentb807819d5501ee7ba22a178d3acfb8fa6d6bcde7 (diff)
downloadwabt-4191fc9e5d65f31ca7538b2a585d251b3ba07ac3.tar.gz
wabt-4191fc9e5d65f31ca7538b2a585d251b3ba07ac3.tar.bz2
wabt-4191fc9e5d65f31ca7538b2a585d251b3ba07ac3.zip
Split run-unittests out as seperate target (#1255)
New `check` target now runs other. This allows for github actions to show unittests and system tests as separate steps. Also a couple of CMakeLists.txt cleanups: - Don't use add_definition to add `-fno-exceptions`, this is a C++-only flag. - Lowercase the name of the `sanitizer` function. - Remove opcode.def from list of library input file. On windows when building a DLL .def files are assumed to be windows DLL .def files, which this is not. This change is split out from #1250
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 94904d30..afb5ac8a 100644
--- a/Makefile
+++ b/Makefile
@@ -125,7 +125,7 @@ endef
define TEST
.PHONY: $(call TEST_TARGET,$(1),$(2),$(3))
$(call TEST_TARGET,$(1),$(2),$(3)): $(call CMAKE_DIR,$(1),$(2),$(3))$$(BUILD_FILE)
- $$(BUILD_CMD) -C $(call CMAKE_DIR,$(1),$(2),$(3)) run-tests
+ $$(BUILD_CMD) -C $(call CMAKE_DIR,$(1),$(2),$(3)) check
test-everything: $(CALL TEST_TARGET,$(1),$(2),$(3))
endef