- (djm) [Makefile.in regress/scp-ssh-wrapper.sh regress/scp.sh] Make

the scp regress test actually test the built scp rather than the one
   in $PATH. ok dtucker@
This commit is contained in:
Damien Miller 2014-01-24 14:27:04 +11:00
parent 42a0925301
commit b0e0f760b8
4 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,8 @@
20130124
- (djm) [Makefile.in regress/scp-ssh-wrapper.sh regress/scp.sh] Make
the scp regress test actually test the built scp rather than the one
in $PATH. ok dtucker@
20130123
- (tim) [session.c] Improve error reporting on set_id().
- (dtucker) [configure.ac] NetBSD's (and FreeBSD's) strnvis is gratuitously

View File

@ -1,4 +1,4 @@
# $Id: Makefile.in,v 1.350 2014/01/17 05:47:04 djm Exp $
# $Id: Makefile.in,v 1.351 2014/01/24 03:27:04 djm Exp $
# uncomment if you run a non bourne compatable shell. Ie. csh
#SHELL = @SH@
@ -411,6 +411,7 @@ regress/setuid-allowed$(EXEEXT): $(srcdir)/regress/setuid-allowed.c
tests interop-tests: $(TARGETS) regress/modpipe$(EXEEXT)
BUILDDIR=`pwd`; \
TEST_SHELL="@TEST_SHELL@"; \
TEST_SSH_SCP="$${BUILDDIR}/scp"; \
TEST_SSH_SSH="$${BUILDDIR}/ssh"; \
TEST_SSH_SSHD="$${BUILDDIR}/sshd"; \
TEST_SSH_SSHAGENT="$${BUILDDIR}/ssh-agent"; \
@ -434,6 +435,7 @@ tests interop-tests: $(TARGETS) regress/modpipe$(EXEEXT)
PATH="$${BUILDDIR}:$${PATH}" \
TEST_ENV=MALLOC_OPTIONS="@TEST_MALLOC_OPTIONS@" \
TEST_SHELL="$${TEST_SHELL}" \
TEST_SSH_SCP="$${TEST_SSH_SCP}" \
TEST_SSH_SSH="$${TEST_SSH_SSH}" \
TEST_SSH_SSHD="$${TEST_SSH_SSHD}" \
TEST_SSH_SSHAGENT="$${TEST_SSH_SSHAGENT}" \

View File

@ -17,7 +17,7 @@ printname () {
}
# Discard all but last argument. We use arg later.
while test "$1" != ""; do
while test "x$1" != "x"; do
arg="$1"
shift
done
@ -52,6 +52,8 @@ badserver_4)
echo "X"
;;
*)
exec $arg
set -- $arg
shift
exec $SCP "$@"
;;
esac

View File

@ -20,6 +20,7 @@ SRC=`dirname ${SCRIPT}`
cp ${SRC}/scp-ssh-wrapper.sh ${OBJ}/scp-ssh-wrapper.scp
chmod 755 ${OBJ}/scp-ssh-wrapper.scp
scpopts="-q -S ${OBJ}/scp-ssh-wrapper.scp"
export SCP # used in scp-ssh-wrapper.scp
scpclean() {
rm -rf ${COPY} ${COPY2} ${DIR} ${DIR2}