diff options
author | Sam Clegg <sbc@chromium.org> | 2019-12-03 16:48:34 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-03 16:48:34 -0600 |
commit | 4191fc9e5d65f31ca7538b2a585d251b3ba07ac3 (patch) | |
tree | 3d0dbefc2c8deb40a2e7aa2ddd8317a2681007f9 /Makefile | |
parent | b807819d5501ee7ba22a178d3acfb8fa6d6bcde7 (diff) | |
download | wabt-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |