From 323d8916e0c947bff5503b4279a7f1483c63f83c Mon Sep 17 00:00:00 2001 From: Johannes Schriewer Date: Mon, 30 Jul 2018 02:59:12 +0200 Subject: [PATCH] Automatically run tests again --- tests/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index fe3fe13..f12ef10 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -15,8 +15,8 @@ all: $(TARGETS) %.test: %.o cputime.o $(CC) $(COVERAGE_FLAGS) $(LDFLAGS) -o $@ cputime.o $< $(LIBS) - # ./$@ - # rm $@ + ./$@ + rm $@ %.o: %.c test.h $(CC) $(CFLAGS) -o $@ -c $<