summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2021-03-17 02:40:54 -0400
committerJay Satiro <raysatiro@yahoo.com>2021-03-17 02:40:54 -0400
commit4f817152c10399d14ef1f80a0fe49b47c3a5502a (patch)
treedaf21205dee5f0aa2f0f2b755a2801a80dca3d20
parent2682e5f502679c7c6949b5e4a07f41e0b9c1510f (diff)
downloadcurl-4f817152c10399d14ef1f80a0fe49b47c3a5502a.tar.gz
test 433 only and dump environment
Ref: https://github.com/curl/curl/issues/6739
-rwxr-xr-xtests/runtests.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 40315aab4..57886ef1d 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -3757,6 +3757,12 @@ sub singletest {
}
}
}
+
+ #
+ # Dump the environment
+ #
+ print "\n\n"; print "$_ => $ENV{$_}\n" for (sort keys %ENV); print "\n\n";
+
if($use_external_proxy) {
$ENV{http_proxy} = $proxy_address;
$ENV{HTTPS_PROXY} = $proxy_address;
@@ -5628,6 +5634,11 @@ EOHELP
shift @ARGV;
}
+#
+# Override to test test433
+#
+push @testthis, 433;
+
if(!$randseed) {
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
localtime(time);