From 377f9dfc83b2707e4727980a894f4046dab99e09 Mon Sep 17 00:00:00 2001 From: Pierre Hugo Date: Fri, 23 Jan 2015 16:37:13 -0800 Subject: [PATCH] Introduced a 'run all tests' command to the makefile. --- src/test/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/test/Makefile b/src/test/Makefile index 5001c57230..15c9ec9049 100644 --- a/src/test/Makefile +++ b/src/test/Makefile @@ -303,4 +303,8 @@ ws2811_unittest : \ $(CXX) $(CXX_FLAGS) -lpthread $^ -o $(OBJECT_DIR)/$@ +test: $(TESTS) + for test in $(TESTS) ; do \ + $(OBJECT_DIR)/$$test; \ + done