makefile
authorYangqing Jia <jiayq84@gmail.com>
Thu, 19 Sep 2013 22:46:45 +0000 (15:46 -0700)
committerYangqing Jia <jiayq84@gmail.com>
Thu, 19 Sep 2013 22:46:45 +0000 (15:46 -0700)
src/Makefile

index fedb92d..cd89c7d 100644 (file)
@@ -54,6 +54,9 @@ linecount: clean
 
 test: $(OBJS) $(GTEST_OBJ) $(TEST_BINS)
 
+runtest: test
+       for testbin in $(TEST_BINS); do $$testbin; done
+
 $(TEST_BINS): %.testbin : %.o
        $(CXX) $< $(OBJS) $(GTEST_OBJ) -o $@ $(LDFLAGS) $(WARNINGS)