From 4191fc9e5d65f31ca7538b2a585d251b3ba07ac3 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 3 Dec 2019 16:48:34 -0600 Subject: 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit v1.2.3