From e13a6938894a4c60a28969778942e35184534df9 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Wed, 11 Feb 2015 23:32:50 +0100 Subject: [PATCH] build: make test-ci target produce tap output Make `make test-ci` print output in TAP format. The default output doesn't show up in the Jenkins web view until the test suite finishes. The web view is line buffered and the test runner doesn't emit newlines until it's done. A nice side effect is that the test runner now prints each test's running time. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 39741096f1d3ad..aa6688c0ef8abe 100644 --- a/Makefile +++ b/Makefile @@ -107,7 +107,7 @@ test-all-valgrind: test-build $(PYTHON) tools/test.py --mode=debug,release --valgrind test-ci: test-build - $(PYTHON) tools/test.py -J parallel sequential message addons + $(PYTHON) tools/test.py -J -p tap parallel sequential message addons test-release: test-build $(PYTHON) tools/test.py --mode=release