From f127bf4c255ef8ecc2f3c77064c0db4a1ab88b18 Mon Sep 17 00:00:00 2001 From: Vojtech Forejt Date: Mon, 21 Jan 2019 21:47:35 +0000 Subject: [PATCH] Variable in test.desc file can be also separated by ':' --- regression/test.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/regression/test.pl b/regression/test.pl index 9f70b122501..a30fe0b4215 100755 --- a/regression/test.pl +++ b/regression/test.pl @@ -74,6 +74,7 @@ ($$$$$$$$$$) foreach my $key (@keys) { my $value = $defines->{$key}; $options =~ s/(\$$key$|\$$key )/$value /g; + $options =~ s/\$$key([:;])/$value\1/g; # Variables in --classpath are separated by (semi)colons } if (scalar @keys) { foreach my $word (split(/\s/, $options)) {