mirror of
https://github.com/curl/curl.git
synced 2026-07-23 13:17:18 +03:00
tests: move server config files under the pid dir
These files are generated by the test servers and must therefore be found in the log directory to make them available to only those servers once multiple test runners are executing in parallel. They must also not be deleted with the log files, so they are stored in the pidfile directory. Ref: #10818 Closes #10875
This commit is contained in:
parent
1cffced9c5
commit
70d2fca2f6
56 changed files with 158 additions and 125 deletions
|
|
@ -210,7 +210,7 @@ sub dump_array {
|
|||
if(!$filename) {
|
||||
$error = 'Error: Missing argument 1 for dump_array()';
|
||||
}
|
||||
elsif(open(my $textfh, ">", "$filename")) {
|
||||
elsif(open(my $textfh, ">", $filename)) {
|
||||
foreach my $line (@arr) {
|
||||
$line .= "\n" if($line !~ /\n$/);
|
||||
print $textfh $line;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue