summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2021-06-02 22:10:57 +0000
committerJames E Keenan <jkeenan@cpan.org>2021-06-10 00:11:55 +0000
commitf6111fa5f05db77b7dc3d0597790cafcc7763d98 (patch)
treee6a95fad9421cb736bec782d4c168cdc1e59f77c
parent6e512bc2beef5b8b17502db7edf50b5984776318 (diff)
downloadperl-f6111fa5f05db77b7dc3d0597790cafcc7763d98.tar.gz
Skip tests of CORE::Dump on FreeBSD
Because on this OS this test writes to /var/log/messages For: https://github.com/Perl/perl5/issues/18847 Move FreeBSD skip condition near to other 'skip_all' conditions, per review by TonyC.
-rw-r--r--t/op/dump.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/op/dump.t b/t/op/dump.t
index 397c5b55ee..0373ed0be4 100644
--- a/t/op/dump.t
+++ b/t/op/dump.t
@@ -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=/;