diff options
author | Rod Vagg <rod@vagg.org> | 2015-02-24 12:17:53 -0600 |
---|---|---|
committer | Rod Vagg <rod@vagg.org> | 2015-02-24 13:28:58 -0600 |
commit | e00c938d246c29897344be3b3060533bb4ad7806 (patch) | |
tree | 1f67df5f2f3c767b4a90655f1e3757b0c3f775a6 | |
parent | a7bdce249c19b88692672862c61bf5fc51a71ab3 (diff) | |
download | node-new-e00c938d246c29897344be3b3060533bb4ad7806.tar.gz |
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 <info@bnoordhuis.nl>
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 12d973ec70..aab27be823 100644 --- a/.gitignore +++ b/.gitignore @@ -76,3 +76,4 @@ deps/zlib/zlib.target.mk # test artifacts tools/faketime icu_config.gypi +test.tap @@ -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 |