Fix load tests

This commit is contained in:
Ervin Hegedus
2025-07-27 19:55:18 +02:00
parent 158084c7ec
commit 36876ff5fb
3 changed files with 337 additions and 1 deletions

View File

@@ -14,7 +14,7 @@
conf => sub {
# Open the minimal conf file, substituting the
# relative log paths with full paths.
open(C, "<$ENV{DIST_ROOT}/modsecurity.conf-minimal") or die "$!\n";
open(C, "<$ENV{DIST_ROOT}/tests/modsecurity.conf-minimal") or die "$!\n";
(my $conf = join('', <C>)) =~ s#Log logs/#Log $ENV{TEST_SERVER_ROOT}/logs/#g;
close C;