Introduced a 'run all tests' command to the makefile.

This commit is contained in:
Pierre Hugo 2015-01-23 16:37:13 -08:00
parent 861f5b6725
commit 377f9dfc83
1 changed files with 4 additions and 0 deletions

View File

@ -303,4 +303,8 @@ ws2811_unittest : \
$(CXX) $(CXX_FLAGS) -lpthread $^ -o $(OBJECT_DIR)/$@
test: $(TESTS)
for test in $(TESTS) ; do \
$(OBJECT_DIR)/$$test; \
done