aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl-5.14.2/debian/skip-kfreebsd-crash.diff
diff options
context:
space:
mode:
authorKang Kai <kai.kang@windriver.com>2013-01-21 16:57:12 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-25 12:35:49 +0000
commitb1fd25e05308cabb56afe1d4276470bf7380ea59 (patch)
tree1467fdda27018d18fac7560f3eb89a64f03c3a84 /meta/recipes-devtools/perl/perl-5.14.2/debian/skip-kfreebsd-crash.diff
parent360401af6e7729a373d0a6d13995714aff121064 (diff)
downloadopenembedded-core-b1fd25e05308cabb56afe1d4276470bf7380ea59.tar.gz
perl: update to 5.14.3
There is a securty issue: http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2012-5195 Update perl to 5.14.3 to resolve this problem. Patches hurd-ccflags.diff, h2ph-multiarch.diff, index-tainting.diff and hurd-hints.diff have been merged, so remove them from SRC_URI. Update patches config.sh and Makefile.SH.patch with new PV. [Yocto 3701] Signed-off-by: Kang Kai <kai.kang@windriver.com>
Diffstat (limited to 'meta/recipes-devtools/perl/perl-5.14.2/debian/skip-kfreebsd-crash.diff')
-rw-r--r--meta/recipes-devtools/perl/perl-5.14.2/debian/skip-kfreebsd-crash.diff40
1 files changed, 0 insertions, 40 deletions
diff --git a/meta/recipes-devtools/perl/perl-5.14.2/debian/skip-kfreebsd-crash.diff b/meta/recipes-devtools/perl/perl-5.14.2/debian/skip-kfreebsd-crash.diff
deleted file mode 100644
index cdade88664..0000000000
--- a/meta/recipes-devtools/perl/perl-5.14.2/debian/skip-kfreebsd-crash.diff
+++ /dev/null
@@ -1,40 +0,0 @@
-Upstream-Status:Inappropriate [debian patches]
-From ff2815399ad94915da2e63cb3c4bbd2d02dac4b2 Mon Sep 17 00:00:00 2001
-From: Niko Tyni <ntyni@debian.org>
-Date: Fri, 5 Aug 2011 10:50:18 +0300
-Subject: Skip a crashing test case in t/op/threads.t on GNU/kFreeBSD
-
-Bug: http://rt.perl.org/rt3/Ticket/Display.html?id=96272
-Bug-Debian: http://bugs.debian.org/628493
-
-The crash is not a regression in 5.14, it just gets triggered there by
-a new unrelated test case.
-
-Skip the test until the culprit is found.
-
-Patch-Name: debian/skip-kfreebsd-crash.diff
----
- t/op/threads.t | 4 ++++
- 1 files changed, 4 insertions(+), 0 deletions(-)
-
-diff --git a/t/op/threads.t b/t/op/threads.t
-index 24e84e4..6a91366 100644
---- a/t/op/threads.t
-+++ b/t/op/threads.t
-@@ -342,6 +342,9 @@ threads->create(
-
- EOI
-
-+SKIP: {
-+ skip "[perl #96272] avoid crash on GNU/kFreeBSD", 1
-+ if $^O eq 'gnukfreebsd';
- # [perl #78494] Pipes shared between threads block when closed
- watchdog 10;
- {
-@@ -351,5 +354,6 @@ watchdog 10;
- threads->create(sub { })->join;
- ok(1, "Pipes shared between threads do not block when closed");
- }
-+}
-
- # EOF