diff options
Diffstat (limited to 'regress')
-rw-r--r-- | regress/cert-hostkey.sh | 2 | ||||
-rw-r--r-- | regress/cert-userkey.sh | 2 |
2 files changed, 2 insertions, 2 deletions
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 |
7 | ecdsa="" | 7 | ecdsa="" |
8 | if "$TEST_SSH_ECC" = "yes"; then | 8 | if test "x$TEST_SSH_ECC" = "xyes"; then |
9 | ecdsa=ecdsa | 9 | ecdsa=ecdsa |
10 | fi | 10 | fi |
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 |
7 | ecdsa="" | 7 | ecdsa="" |
8 | if "$TEST_SSH_ECC" = "yes"; then | 8 | if test "x$TEST_SSH_ECC" = "xyes"; then |
9 | ecdsa=ecdsa | 9 | ecdsa=ecdsa |
10 | fi | 10 | fi |
11 | 11 | ||