diff options
Diffstat (limited to 'regress')
-rw-r--r-- | regress/multiplex.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/multiplex.sh b/regress/multiplex.sh index 70a4e677f..9940f15cb 100644 --- a/regress/multiplex.sh +++ b/regress/multiplex.sh | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: multiplex.sh,v 1.1 2004/06/13 15:04:08 djm Exp $ | 1 | # $OpenBSD: multiplex.sh,v 1.2 2004/06/16 13:16:40 dtucker Exp $ |
2 | # Placed in the Public Domain. | 2 | # Placed in the Public Domain. |
3 | 3 | ||
4 | CTL=$OBJ/ctl-sock | 4 | CTL=$OBJ/ctl-sock |
@@ -23,13 +23,13 @@ cmp /bin/ls $OBJ/ls.copy || fail "corrupted copy of /bin/ls" | |||
23 | rm -f $OBJ/ls.copy | 23 | rm -f $OBJ/ls.copy |
24 | trace "sftp transfer over multiplexed connection and check result" | 24 | trace "sftp transfer over multiplexed connection and check result" |
25 | echo "get /bin/ls $OBJ/ls.copy" | \ | 25 | echo "get /bin/ls $OBJ/ls.copy" | \ |
26 | ${SFTP} -oControlPath=$CTL otherhost | 26 | ${SFTP} -oControlPath=$CTL otherhost >/dev/null 2>&1 |
27 | test -f $OBJ/ls.copy || fail "failed copy /bin/ls" | 27 | test -f $OBJ/ls.copy || fail "failed copy /bin/ls" |
28 | cmp /bin/ls $OBJ/ls.copy || fail "corrupted copy of /bin/ls" | 28 | cmp /bin/ls $OBJ/ls.copy || fail "corrupted copy of /bin/ls" |
29 | 29 | ||
30 | rm -f $OBJ/ls.copy | 30 | rm -f $OBJ/ls.copy |
31 | trace "scp transfer over multiplexed connection and check result" | 31 | trace "scp transfer over multiplexed connection and check result" |
32 | ${SCP} -oControlPath=$CTL otherhost:/bin/ls $OBJ/ls.copy | 32 | ${SCP} -oControlPath=$CTL otherhost:/bin/ls $OBJ/ls.copy >/dev/null 2>&1 |
33 | test -f $OBJ/ls.copy || fail "failed copy /bin/ls" | 33 | test -f $OBJ/ls.copy || fail "failed copy /bin/ls" |
34 | cmp /bin/ls $OBJ/ls.copy || fail "corrupted copy of /bin/ls" | 34 | cmp /bin/ls $OBJ/ls.copy || fail "corrupted copy of /bin/ls" |
35 | 35 | ||