Commit e12d46ac authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Updated the test harness to add a new "crypto" feature check and updated the

appropriate test case to use it.  For now, this is treated the same as the
"SSL" feature because curl doesn't list it separately.
parent 1e55ed5c
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -6,6 +6,11 @@

                                  Changelog

Dan F (9 March 2007)
- Updated the test harness to add a new "crypto" feature check and updated the
  appropriate test case to use it.  For now, this is treated the same as the
  "SSL" feature because curl doesn't list it separately.

Daniel (9 March 2007)
- Robert Iakobashvili fixed CURLOPT_INTERFACE for IPv6.

+1 −0
Original line number Diff line number Diff line
@@ -135,6 +135,7 @@ A list of features that MUST be present in the client/library for this test to
be able to run (if these features are not present, the test will be
SKIPPED). Features testable here are:

crypto
getrlimit
GnuTLS
idn
+3 −0
Original line number Diff line number Diff line
@@ -54,6 +54,9 @@ This IS the second real page!
<server>
http
</server>
<features>
crypto
</features>
 <name>
HTTP with Digest authorization with stale=true
 </name>
+3 −0
Original line number Diff line number Diff line
@@ -53,6 +53,9 @@ This IS the real page!
<server>
http
</server>
<features>
crypto
</features>
 <name>
HTTP PUT with --anyauth authorization (picking Digest)
 </name>
+3 −0
Original line number Diff line number Diff line
@@ -32,6 +32,9 @@ Nice auth sir!
<server>
http
</server>
<features>
crypto
</features>
 <name>
HTTP with proxy-requiring-Basic to site-requiring-Digest
 </name>
Loading