Commit 3863de57 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

tests: clear the SSL_CERT_FILE variable on --libcurl tests

Otherwise, the contents will end up in the output and fail the
verification.
parent 75398731
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -27,6 +27,9 @@ http
 <name>
--libcurl for simple HTTP GET
 </name>
<setenv>
SSL_CERT_FILE=
</setenv>
 <command>
http://%HOSTIP:%HTTPPORT/we/want/1400 --libcurl log/test1400.c
</command>
+3 −0
Original line number Diff line number Diff line
@@ -31,6 +31,9 @@ http
 <name>
--libcurl for GET with various options
 </name>
<setenv>
SSL_CERT_FILE=
</setenv>
 <command>
http://%HOSTIP:%HTTPPORT/we/want/1401 --libcurl log/test1401.c --basic -u fake:user -H "X-Files: Mulder" -H "X-Men: cyclops, iceman" -A MyUA -b chocolate=chip --proto "=http,ftp,file"
</command>
+3 −0
Original line number Diff line number Diff line
@@ -28,6 +28,9 @@ http
 <name>
--libcurl for simple POST
 </name>
<setenv>
SSL_CERT_FILE=
</setenv>
 <command>
http://%HOSTIP:%HTTPPORT/we/want/1402 --libcurl log/test1402.c -d "foo=bar" -d "baz=quux"
</command>
+3 −0
Original line number Diff line number Diff line
@@ -28,6 +28,9 @@ http
 <name>
--libcurl for GET with query
 </name>
<setenv>
SSL_CERT_FILE=
</setenv>
 <command>
http://%HOSTIP:%HTTPPORT/we/want/1403 --libcurl log/test1403.c -G -d "foo=bar" -d "baz=quux"
</command>
+3 −0
Original line number Diff line number Diff line
@@ -29,6 +29,9 @@ http
 <name>
--libcurl for HTTP RFC1867-type formposting - -F with three files, one with explicit type
 </name>
<setenv>
SSL_CERT_FILE=
</setenv>
 <command>
http://%HOSTIP:%HTTPPORT/we/want/1404 -F name=value -F 'file=@log/test1404.txt,log/test1404.txt;type=magic/content,log/test1404.txt' --libcurl log/test1404.c
</command>
Loading