From f9971cfc0f88a5f4a76f57a38f2c71b4f930cc89 Mon Sep 17 00:00:00 2001 From: Wichert Akkerman Date: Wed, 21 Nov 2012 23:01:40 +0100 Subject: [PATCH] Ignore exitcode from testrunner. --- projects/SelfTest/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/SelfTest/Makefile b/projects/SelfTest/Makefile index 7acfc447..1ce5ca41 100644 --- a/projects/SelfTest/Makefile +++ b/projects/SelfTest/Makefile @@ -10,7 +10,7 @@ main: $(OBJECTS) $(CXX) -o $@ $^ junit: main - ./main -r junit > junit.xml + -./main -r junit > junit.xml clean: rm -f $(OBJECTS) main junit.xml