Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: make test-ci target produce tap output #810

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
bnoordhuis committed Feb 11, 2015
commit e13a6938894a4c60a28969778942e35184534df9
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down