From 5e817cd36294074c60cf6e7d9a0647c39e18d5e4 Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Tue, 24 Feb 2015 12:17:53 -0600 Subject: [PATCH] build: make test-ci output TAP to stdout and log Closes: #810 PR-URL: https://github.com/iojs/io.js/pull/938 Reviewed-By: Ben Noordhuis --- .gitignore | 1 + Makefile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 12d973ec7004b0..aab27be8239eac 100644 --- a/.gitignore +++ b/.gitignore @@ -76,3 +76,4 @@ deps/zlib/zlib.target.mk # test artifacts tools/faketime icu_config.gypi +test.tap diff --git a/Makefile b/Makefile index 39741096f1d3ad..47ddfc73d3c8af 100644 --- a/Makefile +++ b/Makefile @@ -106,8 +106,8 @@ test-all: test-build test/gc/node_modules/weak/build/Release/weakref.node 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 +test-ci: + $(PYTHON) tools/test.py -p tap --logfile test.tap -J parallel sequential message test-release: test-build $(PYTHON) tools/test.py --mode=release