]> git.pld-linux.org Git - packages/openssh.git/blame - openssh-skip-interop-tests.patch
- release 4 (by relup.sh)
[packages/openssh.git] / openssh-skip-interop-tests.patch
CommitLineData
dfcab906
JP
1diff -urN openssh-8.1p1.orig/regress/Makefile openssh-8.1p1/regress/Makefile
2--- openssh-8.1p1.orig/regress/Makefile 2019-10-17 20:31:40.094507942 +0200
3+++ openssh-8.1p1/regress/Makefile 2019-10-17 20:30:38.567986269 +0200
4@@ -225,8 +225,14 @@
5 t-exec-interop: ${INTEROP_TESTS:=.sh}
6 @if [ "x$?" = "x" ]; then exit 0; fi; \
7 for TEST in ""$?; do \
8- echo "run test $${TEST}" ... 1>&2; \
9- (env SUDO="${SUDO}" TEST_ENV=${TEST_ENV} ${TEST_SHELL} ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \
10+ skip=no; \
11+ for t in ""$${SKIP_LTESTS}; do \
12+ if [ "x$${t}.sh" = "x$${TEST}" ]; then skip=yes; fi; \
13+ done; \
14+ if [ "x$${skip}" = "xno" ]; then \
15+ echo "run test $${TEST}" ... 1>&2; \
16+ (env SUDO="${SUDO}" TEST_ENV=${TEST_ENV} ${TEST_SHELL} ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \
17+ fi; \
18 done
19
20 t-extra: ${EXTRA_TESTS:=.sh}
This page took 0.033823 seconds and 4 git commands to generate.