Skip to content

Commit

Permalink
Skip tests of CORE::Dump on FreeBSD
Browse files Browse the repository at this point in the history
Because on this OS this test writes to /var/log/messages

For: #18847

Move FreeBSD skip condition near to other 'skip_all' conditions, per
review by TonyC.
  • Loading branch information
jkeenan committed Jun 10, 2021
1 parent 6e512bc commit f6111fa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions t/op/dump.t
Expand Up @@ -25,6 +25,9 @@ skip_all("only tested on devel builds")
skip_all("no point in dumping on $^O")
unless $^O =~ /^(linux|.*bsd|solaris|darwin)$/;

skip_all("GH 18847: excessive writes to /var/log/messages on FreeBSD")
if $^O eq 'freebsd';

skip_all("avoid coredump under ASan")
if $Config{ccflags} =~ /-fsanitize=/;

Expand Down

0 comments on commit f6111fa

Please sign in to comment.