summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2011-08-30 18:23:08 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2011-08-30 18:23:08 +0200
commit64fe6c9095c81c943e40c5dcfe37d3b83e18f6ad (patch)
tree79b2087f763fa709d0c07c3f8f275f47c50d8802
parent472ff0313a14a66f7e546e08278cfc1912d24b18 (diff)
downloadgnutls-64fe6c9095c81c943e40c5dcfe37d3b83e18f6ad.tar.gz
disabled test
-rwxr-xr-xtests/suite/testcompat-main19
1 files changed, 10 insertions, 9 deletions
diff --git a/tests/suite/testcompat-main b/tests/suite/testcompat-main
index abf6a43d67..d08e52fc09 100755
--- a/tests/suite/testcompat-main
+++ b/tests/suite/testcompat-main
@@ -220,15 +220,16 @@ wait
#TLS 1.0
-echo "Check TLS 1.0 with RSA ciphersuite (SSLv2 hello)"
-launch_server $$ --priority "NONE:+CIPHER-ALL:+SIGN-ALL:+COMP-NULL:+MAC-ALL:+VERS-TLS1.0:+RSA" --x509certfile $SERV_CERT --x509keyfile $SERV_KEY --x509cafile $CA_CERT --dhparams params.dh & PID=$!
-wait_server $PID
-
-$OPENSSL_CLI s_client -host localhost -port $PORT -cert $CLI_CERT -key $CLI_KEY -CAfile $CA_CERT </dev/null 2>&1 | grep "\:error\:" && \
- fail $PID "Failed"
-
-kill $PID
-wait
+# This test was disabled because it doesn't work as expected with openssl 1.0.0d
+#echo "Check TLS 1.0 with RSA ciphersuite (SSLv2 hello)"
+#launch_server $$ --priority "NONE:+CIPHER-ALL:+SIGN-ALL:+COMP-NULL:+MAC-ALL:+VERS-TLS1.0:+RSA" --x509certfile $SERV_CERT --x509keyfile $SERV_KEY --x509cafile $CA_CERT --dhparams params.dh & PID=$!
+#wait_server $PID
+#
+#$OPENSSL_CLI s_client -host localhost -port $PORT -cert $CLI_CERT -key $CLI_KEY -CAfile $CA_CERT </dev/null 2>&1 | grep "\:error\:" && \
+# fail $PID "Failed"
+#
+#kill $PID
+#wait
echo "Check TLS 1.0 with DHE-RSA ciphersuite"
launch_server $$ --priority "NONE:+CIPHER-ALL:+SIGN-ALL:+COMP-NULL:+MAC-ALL:+VERS-TLS1.0:+DHE-RSA" --x509certfile $SERV_CERT --x509keyfile $SERV_KEY --x509cafile $CA_CERT --dhparams params.dh & PID=$!