Skip to content

Commit 2e70cae

Browse files
committed
Exclude Single* tests from testing with output.
1 parent 2c8cd92 commit 2e70cae

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

tests/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@ endif
7171
TEST_FILES = $(wildcard $(TEST_DIR)/Test**.hpp)
7272
TESTS ?= $(patsubst $(TEST_DIR)/Test%.hpp,%,$(TEST_FILES))
7373

74+
ifeq ($(OUTPUT_INSTRUMENT),yes)
75+
TESTS := $(filter-out Single%, $(TESTS))
76+
endif
77+
7478
# list all driver files and extract driver names
7579
DRIVER_FILES = $(wildcard $(DRIVER_DIR)/Driver**.hpp)
7680
DRIVERS ?= $(patsubst $(DRIVER_DIR)/Driver%.hpp,%,$(DRIVER_FILES))

0 commit comments

Comments
 (0)