diff options
author | 2010-06-27 19:19:56 +0000 | |
---|---|---|
committer | 2010-06-27 19:19:56 +0000 | |
commit | b003f11abdc5cae155b3416c3c6994f55383425f (patch) | |
tree | 2141df0d65a79e11b849511d89dfa640039189f3 | |
parent | return value unused, found by lint (diff) | |
download | wireguard-openbsd-b003f11abdc5cae155b3416c3c6994f55383425f.tar.xz wireguard-openbsd-b003f11abdc5cae155b3416c3c6994f55383425f.zip |
fix how we run the tests so we can successfully use SUDO='sudo -E' in our env
-rw-r--r-- | regress/usr.bin/ssh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/Makefile b/regress/usr.bin/ssh/Makefile index 9c7f9897456..88422df10c5 100644 --- a/regress/usr.bin/ssh/Makefile +++ b/regress/usr.bin/ssh/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.53 2010/05/07 11:31:26 djm Exp $ +# $OpenBSD: Makefile,v 1.54 2010/06/27 19:19:56 phessler Exp $ REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 @@ -106,7 +106,7 @@ t7: t7.out .for t in ${LTESTS} ${INTEROP_TESTS} t-${t}: - env SUDO=${SUDO} ${TEST_ENV} \ + env SUDO="${SUDO}" ${TEST_ENV} \ sh ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/${t}.sh .endfor |