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:
Evan Hunt 2019-02-01 01:55:25 -05:00
commit 1557d116ea

View file

@ -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;
}