diff options
author | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2017-06-28 23:42:17 +0200 |
---|---|---|
committer | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2017-06-28 23:42:17 +0200 |
commit | 93d55ee3221f7802c9329576575322f4764b5211 (patch) | |
tree | f7c97a155b83d1ad72c7f12e48fa8242e2e3f349 /test/runtest | |
parent | 35a043657fa583a0ce96be9da4fff22cb0232c4e (diff) |
testsuite: don't break on '+' in trusted-config-list path
Diffstat (limited to 'test/runtest')
-rwxr-xr-x | test/runtest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtest b/test/runtest index f68b3c057..373043c4d 100755 --- a/test/runtest +++ b/test/runtest @@ -2717,7 +2717,7 @@ if (defined $parm_trusted_config_list) open(TCL, $parm_trusted_config_list) or die "Can't open $parm_trusted_config_list: $!\n"; my $test_config = getcwd() . '/test-config'; die "Can't find '$test_config' in TRUSTED_CONFIG_LIST $parm_trusted_config_list." - if not grep { /^$test_config$/ } <TCL>; + if not grep { /^\Q$test_config\E$/ } <TCL>; } else { |