diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2014-01-24 18:50:24 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2014-01-24 18:50:24 +0100 |
commit | f8ab08b44dee8a573176f0fcbb78e173d33c46df (patch) | |
tree | 289dc8c68c2df7d4b4a2e44f0336983ac3ae69b9 | |
parent | 721c34b42af679e2575e318ecdf1fb9735f02473 (diff) | |
download | gnutls-f8ab08b44dee8a573176f0fcbb78e173d33c46df.tar.gz |
corrected test
-rwxr-xr-x | tests/suite/ciphersuite/test-ciphersuites.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/suite/ciphersuite/test-ciphersuites.sh b/tests/suite/ciphersuite/test-ciphersuites.sh index dda41e9e48..028a92f8e7 100755 --- a/tests/suite/ciphersuite/test-ciphersuites.sh +++ b/tests/suite/ciphersuite/test-ciphersuites.sh @@ -1,11 +1,11 @@ #! /bin/sh nodejs --help >/dev/null 2>&1 -if test $? == 0;then +if test $? = 0;then NODEJS=nodejs else node --help >/dev/null 2>&1 - if test $? == 0;then + if test $? = 0;then NODEJS=node fi fi |