summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl/debian/skip-kfreebsd-crash.diff
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl/perl/debian/skip-kfreebsd-crash.diff')
-rw-r--r--meta/recipes-devtools/perl/perl/debian/skip-kfreebsd-crash.diff41
1 files changed, 0 insertions, 41 deletions
diff --git a/meta/recipes-devtools/perl/perl/debian/skip-kfreebsd-crash.diff b/meta/recipes-devtools/perl/perl/debian/skip-kfreebsd-crash.diff
deleted file mode 100644
index 3b3745238d..0000000000
--- a/meta/recipes-devtools/perl/perl/debian/skip-kfreebsd-crash.diff
+++ /dev/null
@@ -1,41 +0,0 @@
1From 42853af65a28066b119d23d96e964e94b55a8541 Mon Sep 17 00:00:00 2001
2From: Niko Tyni <ntyni@debian.org>
3Date: Fri, 5 Aug 2011 10:50:18 +0300
4Subject: Skip a crashing test case in t/op/threads.t on GNU/kFreeBSD
5
6Bug: http://rt.perl.org/rt3/Ticket/Display.html?id=96272
7Bug-Debian: http://bugs.debian.org/628493
8
9The crash is not a regression in 5.14, it just gets triggered there by
10a new unrelated test case.
11
12Skip the test until the culprit is found.
13
14Patch-Name: debian/skip-kfreebsd-crash.diff
15Upstream-Status: Pending
16---
17 t/op/threads.t | 4 ++++
18 1 file changed, 4 insertions(+)
19
20diff --git a/t/op/threads.t b/t/op/threads.t
21index e76c956..bec210b 100644
22--- a/t/op/threads.t
23+++ b/t/op/threads.t
24@@ -376,6 +376,9 @@ EOF
25 }
26
27
28+SKIP: {
29+ skip "[perl #96272] avoid crash on GNU/kFreeBSD", 1
30+ if $^O eq 'gnukfreebsd';
31 # [perl #78494] Pipes shared between threads block when closed
32 {
33 my $perl = which_perl;
34@@ -384,6 +387,7 @@ EOF
35 threads->create(sub { })->join;
36 ok(1, "Pipes shared between threads do not block when closed");
37 }
38+}
39
40 # [perl #105208] Typeglob clones should not be cloned again during a join
41 {