Skip to content

Commit e676b0a

Browse files
committed
lib/common.mk: Support supplying test names on the command line
Support passing test names to 'make test' invocations as TESTS=names... This makes it easier to debug particular tests that are failing. Signed-off-by: Toke Høiland-Jørgensen <[email protected]>
1 parent 795995f commit e676b0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/common.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,5 +139,5 @@ test:
139139
@echo " No tests defined"
140140
else
141141
test: all
142-
$(Q)$(TEST_DIR)/test_runner.sh $(TEST_FILE)
142+
$(Q)$(TEST_DIR)/test_runner.sh $(TEST_FILE) $(TESTS)
143143
endif

0 commit comments

Comments
 (0)