mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 03:12:04 -04:00
Merge branch 'each-win-tests' into 'master'
tests failing on windows due to false crash-on-shutdown reports See merge request isc-projects/bind9!1446
This commit is contained in:
commit
1557d116ea
1 changed files with 6 additions and 2 deletions
|
|
@ -238,8 +238,12 @@ sub clean_pid_file {
|
|||
|
||||
# If we're here, the PID file hasn't been cleaned up yet
|
||||
if (send_signal(0, $pid) == 0) {
|
||||
print "I:$test:$server crashed on shutdown\n";
|
||||
$errors = 1;
|
||||
# XXX: on windows this is likely to result in a
|
||||
# false positive, so don't bother reporting the error.
|
||||
if ($ENV{'CYGWIN'} eq "") {
|
||||
print "I:$test:$server crashed on shutdown\n";
|
||||
$errors = 1;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue