summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2011-01-07 09:50:08 +1100
committerDamien Miller <djm@mindrot.org>2011-01-07 09:50:08 +1100
commit322125b9603cab2c70e827ae83d332cb6575e399 (patch)
treebe55fcdab0dbd2fef8de49508640bb96ef8ad5b9
parent8ad960b4ba8d076e38587e4d5e57db92d395c4f3 (diff)
- (djm) [regress/cert-hostkey.sh regress/cert-userkey.sh] fix shell test
for no-ECC case. Patch from cristian.ionescu-idbohrn AT axis.com
-rw-r--r--ChangeLog4
-rw-r--r--regress/cert-hostkey.sh2
-rw-r--r--regress/cert-userkey.sh2
3 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e63aab5b..636524bba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120110107
2 - (djm) [regress/cert-hostkey.sh regress/cert-userkey.sh] fix shell test
3 for no-ECC case. Patch from cristian.ionescu-idbohrn AT axis.com
4
120110106 520110106
2 - (djm) OpenBSD CVS Sync 6 - (djm) OpenBSD CVS Sync
3 - markus@cvs.openbsd.org 2010/12/08 22:46:03 7 - markus@cvs.openbsd.org 2010/12/08 22:46:03
diff --git a/regress/cert-hostkey.sh b/regress/cert-hostkey.sh
index 1ae5d0bda..c23a41c68 100644
--- a/regress/cert-hostkey.sh
+++ b/regress/cert-hostkey.sh
@@ -5,7 +5,7 @@ tid="certified host keys"
5 5
6# used to disable ECC based tests on platforms without ECC 6# used to disable ECC based tests on platforms without ECC
7ecdsa="" 7ecdsa=""
8if "$TEST_SSH_ECC" = "yes"; then 8if test "x$TEST_SSH_ECC" = "xyes"; then
9 ecdsa=ecdsa 9 ecdsa=ecdsa
10fi 10fi
11 11
diff --git a/regress/cert-userkey.sh b/regress/cert-userkey.sh
index a42c7f34a..fcca3708b 100644
--- a/regress/cert-userkey.sh
+++ b/regress/cert-userkey.sh
@@ -5,7 +5,7 @@ tid="certified user keys"
5 5
6# used to disable ECC based tests on platforms without ECC 6# used to disable ECC based tests on platforms without ECC
7ecdsa="" 7ecdsa=""
8if "$TEST_SSH_ECC" = "yes"; then 8if test "x$TEST_SSH_ECC" = "xyes"; then
9 ecdsa=ecdsa 9 ecdsa=ecdsa
10fi 10fi
11 11