diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2013-05-30 20:12:33 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2013-05-30 20:12:33 +0000 |
commit | 46e4ca54606e7cc0da61ca84074259c474798a13 (patch) | |
tree | 133957c616df2036b8c6b66fb0e171f9f9cf3f6a /regress/usr.bin/ssh | |
parent | 2e1b58094824239044177fdc74b2fb8f472739df (diff) |
use ssh and sshd as testdata since it needs to be >256k for the rekey test
Diffstat (limited to 'regress/usr.bin/ssh')
-rw-r--r-- | regress/usr.bin/ssh/test-exec.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/regress/usr.bin/ssh/test-exec.sh b/regress/usr.bin/ssh/test-exec.sh index d0862dae8e9..8eb2d5c1f58 100644 --- a/regress/usr.bin/ssh/test-exec.sh +++ b/regress/usr.bin/ssh/test-exec.sh @@ -1,4 +1,4 @@ -# $OpenBSD: test-exec.sh,v 1.44 2013/05/17 10:30:07 dtucker Exp $ +# $OpenBSD: test-exec.sh,v 1.45 2013/05/30 20:12:32 dtucker Exp $ # Placed in the Public Domain. USER=`id -un` @@ -129,8 +129,7 @@ SSH="$SSHLOGWRAP" # The tests may assume that $DATA exists and is writable and $COPY does # not exist. DATA=$OBJ/data -cp /bin/ls ${DATA} -chmod u+w ${DATA} +cat ${SSH} ${SSHD} >${DATA} COPY=$OBJ/copy rm -f ${COPY} |