diff options
author | Lucid One <LucidOne@users.noreply.github.com> | 2018-03-07 00:24:43 -0500 |
---|---|---|
committer | Tad Fisher <tadfisher@gmail.com> | 2018-03-06 23:28:47 -0800 |
commit | 694d10db8fb714d1dc69ec50c0298833a7922088 (patch) | |
tree | f87d2bbf9989e548148a31d4f741a93c8097c506 | |
parent | 1e67a4ed0ce8748ca4c6a6ce51937f710af3841b (diff) | |
download | pass-otp-694d10db8fb714d1dc69ec50c0298833a7922088.tar.gz pass-otp-694d10db8fb714d1dc69ec50c0298833a7922088.zip |
Add `make debug` target to log errors for failed tests to console.
-rw-r--r-- | test/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile index 45882e7..deb6033 100644 --- a/test/Makefile +++ b/test/Makefile @@ -29,6 +29,9 @@ T = $(sort $(wildcard *.t)) all: $(DEFAULT_TEST_TARGET) +debug: pre-clean + TEST_OPTS="-v" $(MAKE) aggregate-results-and-cleanup + test: pre-clean $(MAKE) aggregate-results-and-cleanup |