diff options
Diffstat (limited to 'regress/Makefile')
-rw-r--r-- | regress/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/regress/Makefile b/regress/Makefile index 933fbb424..34c47e8cb 100644 --- a/regress/Makefile +++ b/regress/Makefile | |||
@@ -210,8 +210,16 @@ t12: $(OBJ)/t12.out | |||
210 | t-exec: ${LTESTS:=.sh} | 210 | t-exec: ${LTESTS:=.sh} |
211 | @if [ "x$?" = "x" ]; then exit 0; fi; \ | 211 | @if [ "x$?" = "x" ]; then exit 0; fi; \ |
212 | for TEST in ""$?; do \ | 212 | for TEST in ""$?; do \ |
213 | echo "run test $${TEST}" ... 1>&2; \ | 213 | skip=no; \ |
214 | (env SUDO="${SUDO}" TEST_ENV=${TEST_ENV} ${TEST_SHELL} ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \ | 214 | for t in ""$${SKIP_LTESTS}; do \ |
215 | if [ "x$${t}.sh" = "x$${TEST}" ]; then skip=yes; fi; \ | ||
216 | done; \ | ||
217 | if [ "x$${skip}" = "xno" ]; then \ | ||
218 | echo "run test $${TEST}" ... 1>&2; \ | ||
219 | (env SUDO="${SUDO}" TEST_ENV=${TEST_ENV} ${TEST_SHELL} ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \ | ||
220 | else \ | ||
221 | echo skip test $${TEST} 1>&2; \ | ||
222 | fi; \ | ||
215 | done | 223 | done |
216 | 224 | ||
217 | t-exec-interop: ${INTEROP_TESTS:=.sh} | 225 | t-exec-interop: ${INTEROP_TESTS:=.sh} |