summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2002-02-16 01:09:48 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2002-02-16 01:09:48 +0000
commit6db0bafd69f00171d89c983ae6071437d834e4de (patch)
treec941cb473d422b3b08bc75cbcf15066ad4d26cf0 /regress
parent7f9a534e1acf698e3d652215c45ad5e5e6268752 (diff)
$OpenBSD$, public domain
Diffstat (limited to 'regress')
-rw-r--r--regress/usr.bin/ssh/agent.sh3
-rw-r--r--regress/usr.bin/ssh/broken-pipe.sh3
-rw-r--r--regress/usr.bin/ssh/connect.sh3
-rw-r--r--regress/usr.bin/ssh/exit-status.sh3
-rw-r--r--regress/usr.bin/ssh/forwarding.sh3
-rw-r--r--regress/usr.bin/ssh/proto-mismatch.sh3
-rw-r--r--regress/usr.bin/ssh/proto-version.sh3
-rw-r--r--regress/usr.bin/ssh/proxy-connect.sh3
-rw-r--r--regress/usr.bin/ssh/ssh-com.sh3
-rw-r--r--regress/usr.bin/ssh/test-exec.sh3
-rw-r--r--regress/usr.bin/ssh/try-ciphers.sh3
-rw-r--r--regress/usr.bin/ssh/yes-head.sh3
12 files changed, 35 insertions, 1 deletions
diff --git a/regress/usr.bin/ssh/agent.sh b/regress/usr.bin/ssh/agent.sh
index d823bf1b693..2ee2bf84828 100644
--- a/regress/usr.bin/ssh/agent.sh
+++ b/regress/usr.bin/ssh/agent.sh
@@ -1,3 +1,6 @@
+# $OpenBSD: agent.sh,v 1.4 2002/02/16 01:09:47 markus Exp $
+# Placed in the Public Domain.
+
tid="simple agent test"
SSH_AUTH_SOCK=/nonexistant ssh-add -l > /dev/null 2>&1
diff --git a/regress/usr.bin/ssh/broken-pipe.sh b/regress/usr.bin/ssh/broken-pipe.sh
index 89ea8a91497..5adc5f44eed 100644
--- a/regress/usr.bin/ssh/broken-pipe.sh
+++ b/regress/usr.bin/ssh/broken-pipe.sh
@@ -1,3 +1,6 @@
+# $OpenBSD: broken-pipe.sh,v 1.3 2002/02/16 01:09:47 markus Exp $
+# Placed in the Public Domain.
+
tid="broken pipe test"
for p in 1 2; do
diff --git a/regress/usr.bin/ssh/connect.sh b/regress/usr.bin/ssh/connect.sh
index eb4decf28df..4fe77fa47a2 100644
--- a/regress/usr.bin/ssh/connect.sh
+++ b/regress/usr.bin/ssh/connect.sh
@@ -1,3 +1,6 @@
+# $OpenBSD: connect.sh,v 1.3 2002/02/16 01:09:47 markus Exp $
+# Placed in the Public Domain.
+
tid="simple connect"
start_sshd
diff --git a/regress/usr.bin/ssh/exit-status.sh b/regress/usr.bin/ssh/exit-status.sh
index a90be592639..d48e4c81d6c 100644
--- a/regress/usr.bin/ssh/exit-status.sh
+++ b/regress/usr.bin/ssh/exit-status.sh
@@ -1,3 +1,6 @@
+# $OpenBSD: exit-status.sh,v 1.3 2002/02/16 01:09:47 markus Exp $
+# Placed in the Public Domain.
+
tid="remote exit status"
for p in 1 2; do
diff --git a/regress/usr.bin/ssh/forwarding.sh b/regress/usr.bin/ssh/forwarding.sh
index 5b7b1b0753d..8f770301c69 100644
--- a/regress/usr.bin/ssh/forwarding.sh
+++ b/regress/usr.bin/ssh/forwarding.sh
@@ -1,3 +1,6 @@
+# $OpenBSD: forwarding.sh,v 1.3 2002/02/16 01:09:47 markus Exp $
+# Placed in the Public Domain.
+
tid="local and remote forwarding"
start_sshd
diff --git a/regress/usr.bin/ssh/proto-mismatch.sh b/regress/usr.bin/ssh/proto-mismatch.sh
index 3b1826fe3ea..3ea1d92fd5e 100644
--- a/regress/usr.bin/ssh/proto-mismatch.sh
+++ b/regress/usr.bin/ssh/proto-mismatch.sh
@@ -1,3 +1,6 @@
+# $OpenBSD: proto-mismatch.sh,v 1.2 2002/02/16 01:09:47 markus Exp $
+# Placed in the Public Domain.
+
tid="protocol version mismatch"
mismatch ()
diff --git a/regress/usr.bin/ssh/proto-version.sh b/regress/usr.bin/ssh/proto-version.sh
index 6dec51f623e..ad178a499eb 100644
--- a/regress/usr.bin/ssh/proto-version.sh
+++ b/regress/usr.bin/ssh/proto-version.sh
@@ -1,3 +1,6 @@
+# $OpenBSD: proto-version.sh,v 1.2 2002/02/16 01:09:47 markus Exp $
+# Placed in the Public Domain.
+
tid="sshd version with different protocol combinations"
# we just start sshd in inetd mode and check the banner
diff --git a/regress/usr.bin/ssh/proxy-connect.sh b/regress/usr.bin/ssh/proxy-connect.sh
index 7d1cd37a4e4..8949ffd5a4d 100644
--- a/regress/usr.bin/ssh/proxy-connect.sh
+++ b/regress/usr.bin/ssh/proxy-connect.sh
@@ -1,3 +1,6 @@
+# $OpenBSD: proxy-connect.sh,v 1.3 2002/02/16 01:09:47 markus Exp $
+# Placed in the Public Domain.
+
tid="proxy connect"
for p in 1 2; do
diff --git a/regress/usr.bin/ssh/ssh-com.sh b/regress/usr.bin/ssh/ssh-com.sh
index c76cf2ce324..d8209671194 100644
--- a/regress/usr.bin/ssh/ssh-com.sh
+++ b/regress/usr.bin/ssh/ssh-com.sh
@@ -1,3 +1,6 @@
+# $OpenBSD: ssh-com.sh,v 1.2 2002/02/16 01:09:47 markus Exp $
+# Placed in the Public Domain.
+
tid="connect to ssh.com server"
#TEST_COMBASE=/path/to/ssh/com/binaries
diff --git a/regress/usr.bin/ssh/test-exec.sh b/regress/usr.bin/ssh/test-exec.sh
index f35f9141662..4ad29fd095c 100644
--- a/regress/usr.bin/ssh/test-exec.sh
+++ b/regress/usr.bin/ssh/test-exec.sh
@@ -1,4 +1,5 @@
-# $OpenBSD: test-exec.sh,v 1.4 2002/02/16 00:27:34 markus Exp $
+# $OpenBSD: test-exec.sh,v 1.5 2002/02/16 01:09:47 markus Exp $
+# Placed in the Public Domain.
PORT=4242
USER=`id -un`
diff --git a/regress/usr.bin/ssh/try-ciphers.sh b/regress/usr.bin/ssh/try-ciphers.sh
index 89798b4f0ae..aed6097798e 100644
--- a/regress/usr.bin/ssh/try-ciphers.sh
+++ b/regress/usr.bin/ssh/try-ciphers.sh
@@ -1,3 +1,6 @@
+# $OpenBSD: try-ciphers.sh,v 1.3 2002/02/16 01:09:47 markus Exp $
+# Placed in the Public Domain.
+
tid="try ciphers"
ciphers="aes128-cbc 3des-cbc blowfish-cbc cast128-cbc arcfour aes192-cbc aes256-cbc"
diff --git a/regress/usr.bin/ssh/yes-head.sh b/regress/usr.bin/ssh/yes-head.sh
index 67c35082c48..e8d40084036 100644
--- a/regress/usr.bin/ssh/yes-head.sh
+++ b/regress/usr.bin/ssh/yes-head.sh
@@ -1,3 +1,6 @@
+# $OpenBSD: yes-head.sh,v 1.3 2002/02/16 01:09:47 markus Exp $
+# Placed in the Public Domain.
+
tid="yes pipe head"
for p in 1 2; do