mirror of git://anongit.mindrot.org/openssh.git
run t-extra regress tests
This exposes the t-extra regress tests (including agent-pkcs11.sh) as a new extra-tests target in the top level Makefile and runs them by default. ok dtucker@
This commit is contained in:
parent
637624dbba
commit
6eee8c972d
|
@ -715,7 +715,7 @@ regress-unit-binaries: regress-prep $(REGRESSLIBS) \
|
|||
regress/unittests/sshsig/test_sshsig$(EXEEXT) \
|
||||
regress/unittests/utf8/test_utf8$(EXEEXT)
|
||||
|
||||
tests: file-tests t-exec interop-tests unit
|
||||
tests: file-tests t-exec interop-tests extra-tests unit
|
||||
echo all tests passed
|
||||
|
||||
unit: regress-unit-binaries
|
||||
|
@ -726,7 +726,7 @@ unit: regress-unit-binaries
|
|||
OBJ="$(BUILDDIR)/regress" \
|
||||
$@ && echo $@ tests passed
|
||||
|
||||
interop-tests t-exec file-tests: regress-prep regress-binaries $(TARGETS)
|
||||
interop-tests t-exec file-tests extra-tests: regress-prep regress-binaries $(TARGETS)
|
||||
cd $(srcdir)/regress || exit $$?; \
|
||||
EGREP='@EGREP@' \
|
||||
OPENSSL_BIN='@OPENSSL_BIN@' \
|
||||
|
|
|
@ -10,6 +10,8 @@ file-tests: $(REGRESS_TARGETS)
|
|||
# Interop tests are not run by default
|
||||
interop interop-tests: t-exec-interop
|
||||
|
||||
extra extra-tests: t-extra
|
||||
|
||||
prep:
|
||||
test "x${USE_VALGRIND}" = "x" || mkdir -p $(OBJ)/valgrind-out
|
||||
|
||||
|
|
Loading…
Reference in New Issue