tests: move pidfiles and portfiles under the log directory

This is to segregate all files written by a test process into a single
root to allow for future parallel testing.

Ref: #10818
Closes #10874
This commit is contained in:
Dan Fandrich 2023-03-30 13:25:17 -07:00
parent ec2a5bc5fc
commit 3cc41a2d36
9 changed files with 105 additions and 70 deletions

View file

@ -177,15 +177,18 @@ while(@ARGV) {
shift @ARGV;
}
#***************************************************************************
# Initialize command line option dependent variables
#
#***************************************************************************
# Default ssh daemon pid file name
#
if(!$pidfile) {
$pidfile = "$path/". server_pidfilename($proto, $ipvnum, $idnum);
$pidfile = server_pidfilename($path, $proto, $ipvnum, $idnum);
}
#***************************************************************************
# ssh and sftp server log file names
#