diff options
author | Darren Tucker <dtucker@dtucker.net> | 2019-07-29 16:04:01 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2019-07-29 16:34:19 +1000 |
commit | e93ffd1a19fc47c49d68ae2fb332433690ecd389 (patch) | |
tree | d3ea723d20cc581dd009ce89b31f7764d88b89dc /Makefile.in | |
parent | 2ad5b36b18bddf2965fe60384c29b3f1d451b4ed (diff) |
Report success of individual tests as well as all.
This puts the "all tests passed" message back at the end where the
test harnesses can find it.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 0634fa333..c923c6ce9 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -591,6 +591,7 @@ regress-unit-binaries: regress-prep $(REGRESSLIBS) \ | |||
591 | regress/misc/kexfuzz/kexfuzz$(EXEEXT) | 591 | regress/misc/kexfuzz/kexfuzz$(EXEEXT) |
592 | 592 | ||
593 | tests: file-tests t-exec interop-tests unit | 593 | tests: file-tests t-exec interop-tests unit |
594 | echo all tests passed | ||
594 | 595 | ||
595 | unit: regress-unit-binaries | 596 | unit: regress-unit-binaries |
596 | BUILDDIR=`pwd`; \ | 597 | BUILDDIR=`pwd`; \ |
@@ -598,7 +599,7 @@ unit: regress-unit-binaries | |||
598 | $(MAKE) \ | 599 | $(MAKE) \ |
599 | .OBJDIR="$${BUILDDIR}/regress" \ | 600 | .OBJDIR="$${BUILDDIR}/regress" \ |
600 | .CURDIR="`pwd`" \ | 601 | .CURDIR="`pwd`" \ |
601 | $@ | 602 | $@ && echo $@ tests passed |
602 | 603 | ||
603 | interop-tests t-exec file-tests: regress-prep regress-binaries $(TARGETS) | 604 | interop-tests t-exec file-tests: regress-prep regress-binaries $(TARGETS) |
604 | BUILDDIR=`pwd`; \ | 605 | BUILDDIR=`pwd`; \ |
@@ -646,7 +647,7 @@ interop-tests t-exec file-tests: regress-prep regress-binaries $(TARGETS) | |||
646 | TEST_SSH_ECC="$${TEST_SSH_ECC}" \ | 647 | TEST_SSH_ECC="$${TEST_SSH_ECC}" \ |
647 | TEST_SHELL="${TEST_SHELL}" \ | 648 | TEST_SHELL="${TEST_SHELL}" \ |
648 | EXEEXT="$(EXEEXT)" \ | 649 | EXEEXT="$(EXEEXT)" \ |
649 | $@ && echo all tests passed | 650 | $@ && echo all $@ passed |
650 | 651 | ||
651 | compat-tests: $(LIBCOMPAT) | 652 | compat-tests: $(LIBCOMPAT) |
652 | (cd openbsd-compat/regress && $(MAKE)) | 653 | (cd openbsd-compat/regress && $(MAKE)) |