diff options
author | Colin Watson <cjwatson@debian.org> | 2019-06-05 06:41:44 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2019-06-09 22:09:07 +0100 |
commit | 865a97e05b6aab1619e1c8eeb33ccb8f9a9e48d3 (patch) | |
tree | 7bb2128eb663180bacfabca88f26d26bf0733824 /regress/Makefile | |
parent | ba627ba172d6649919baedff5ba2789610da382a (diff) | |
parent | 7d50f9e5be88179325983a1f58c9d51bb58f025a (diff) |
New upstream release (8.0p1)
Diffstat (limited to 'regress/Makefile')
-rw-r--r-- | regress/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/regress/Makefile b/regress/Makefile index 6e462a4f6..6fdfcc8ca 100644 --- a/regress/Makefile +++ b/regress/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.97 2018/06/07 04:46:34 djm Exp $ | 1 | # $OpenBSD: Makefile,v 1.100 2019/01/20 23:24:19 djm Exp $ |
2 | 2 | ||
3 | REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t-exec | 3 | REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t-exec |
4 | tests: prep $(REGRESS_TARGETS) | 4 | tests: prep $(REGRESS_TARGETS) |
@@ -11,7 +11,6 @@ prep: | |||
11 | 11 | ||
12 | clean: | 12 | clean: |
13 | for F in $(CLEANFILES); do rm -f $(OBJ)$$F; done | 13 | for F in $(CLEANFILES); do rm -f $(OBJ)$$F; done |
14 | test -z "${SUDO}" || ${SUDO} rm -f ${SUDO_CLEAN} | ||
15 | rm -rf $(OBJ).putty | 14 | rm -rf $(OBJ).putty |
16 | 15 | ||
17 | distclean: clean | 16 | distclean: clean |
@@ -92,7 +91,8 @@ LTESTS= connect \ | |||
92 | INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers | 91 | INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers |
93 | #INTEROP_TESTS+=ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp | 92 | #INTEROP_TESTS+=ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp |
94 | 93 | ||
95 | #LTESTS= cipher-speed | 94 | EXTRA_TESTS= agent-pkcs11 |
95 | #EXTRA_TESTS+= cipher-speed | ||
96 | 96 | ||
97 | USERNAME= ${LOGNAME} | 97 | USERNAME= ${LOGNAME} |
98 | CLEANFILES= *.core actual agent-key.* authorized_keys_${USERNAME} \ | 98 | CLEANFILES= *.core actual agent-key.* authorized_keys_${USERNAME} \ |
@@ -123,8 +123,6 @@ CLEANFILES= *.core actual agent-key.* authorized_keys_${USERNAME} \ | |||
123 | t8.out t8.out.pub t9.out t9.out.pub testdata \ | 123 | t8.out t8.out.pub t9.out t9.out.pub testdata \ |
124 | user_*key* user_ca* user_key* | 124 | user_*key* user_ca* user_key* |
125 | 125 | ||
126 | SUDO_CLEAN+= /var/run/testdata_${USERNAME} /var/run/keycommand_${USERNAME} | ||
127 | |||
128 | # Enable all malloc(3) randomisations and checks | 126 | # Enable all malloc(3) randomisations and checks |
129 | TEST_ENV= "MALLOC_OPTIONS=CFGJRSUX" | 127 | TEST_ENV= "MALLOC_OPTIONS=CFGJRSUX" |
130 | 128 | ||
@@ -218,6 +216,13 @@ t-exec-interop: ${INTEROP_TESTS:=.sh} | |||
218 | (env SUDO="${SUDO}" TEST_ENV=${TEST_ENV} ${TEST_SHELL} ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \ | 216 | (env SUDO="${SUDO}" TEST_ENV=${TEST_ENV} ${TEST_SHELL} ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \ |
219 | done | 217 | done |
220 | 218 | ||
219 | t-extra: ${EXTRA_TESTS:=.sh} | ||
220 | @if [ "x$?" = "x" ]; then exit 0; fi; \ | ||
221 | for TEST in ""$?; do \ | ||
222 | echo "run test $${TEST}" ... 1>&2; \ | ||
223 | (env SUDO="${SUDO}" TEST_ENV=${TEST_ENV} ${TEST_SHELL} ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \ | ||
224 | done | ||
225 | |||
221 | # Not run by default | 226 | # Not run by default |
222 | interop: ${INTEROP_TARGETS} | 227 | interop: ${INTEROP_TARGETS} |
223 | 228 | ||