summaryrefslogtreecommitdiff
path: root/regress/kextype.sh
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2010-11-05 18:23:38 +1100
committerDarren Tucker <dtucker@zip.com.au>2010-11-05 18:23:38 +1100
commiteab5f0df90cad495ee65abdb557538dbfb625d15 (patch)
treed93cf676ec18859bee5e6fe5a75b15da761d89a3 /regress/kextype.sh
parentb69e033e6704000be33ed6dc47eb9ac28f10b14b (diff)
- (dtucker) [Makefile configure.ac regress/Makefile regress/keytype.sh]
Import recent changes to regress/Makefile, pass a flag to enable ECC tests from configure through to regress/Makefile and use it in the tests.
Diffstat (limited to 'regress/kextype.sh')
-rw-r--r--regress/kextype.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/kextype.sh b/regress/kextype.sh
index ba6fd9509..22ceb40c9 100644
--- a/regress/kextype.sh
+++ b/regress/kextype.sh
@@ -7,7 +7,9 @@ TIME=/usr/bin/time
7cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak 7cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak
8cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak 8cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak
9 9
10kextypes="ecdh-sha2-nistp256 ecdh-sha2-nistp384 ecdh-sha2-nistp521" 10if "$TEST_SSH_ECC" = "yes"; then
11 kextypes="ecdh-sha2-nistp256 ecdh-sha2-nistp384 ecdh-sha2-nistp521"
12fi
11kextypes="$kextypes diffie-hellman-group-exchange-sha256" 13kextypes="$kextypes diffie-hellman-group-exchange-sha256"
12kextypes="$kextypes diffie-hellman-group-exchange-sha1" 14kextypes="$kextypes diffie-hellman-group-exchange-sha1"
13kextypes="$kextypes diffie-hellman-group14-sha1" 15kextypes="$kextypes diffie-hellman-group14-sha1"