aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-06-12 15:48:47 +0200
committerDaniel Stenberg <daniel@haxx.se>2018-06-12 16:11:21 +0200
commitbb9a340c73f3f96b2a8e39add7072aae4dc81628 (patch)
tree30ead446b9e586ca0607ae22317695c18e0c9343 /tests/runtests.pl
parent5ae22272d1506e5c0e431f4ad60f1dc446f76715 (diff)
runtests: support variables in <strippart>
... and make use of that to make 1455 work better without using a fixed local port number. Fixes #2649 Closes #2650
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 054c64bf3..92fb447a2 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -4349,9 +4349,11 @@ sub singletest {
# what parts to cut off from the protocol
my @strippart = getpart("verify", "strippart");
my $strip;
+ @strippart = fixarray(@strippart);
for $strip (@strippart) {
chomp $strip;
for(@out) {
+ print STDERR ":::: $strip\n";
eval $strip;
}
}