summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl-5.12.2/debian/m68k_thread_stress.diff
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2011-04-23 19:43:17 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-28 10:44:22 +0100
commit829b985eb5c329772db49da9838530a639cb2638 (patch)
tree3c18883d115058c2c96c60919b5c052d21b109e6 /meta/recipes-devtools/perl/perl-5.12.2/debian/m68k_thread_stress.diff
parent3669de7f96100a5d4fbfc9b4e2ebc16851ba98ea (diff)
downloadpoky-829b985eb5c329772db49da9838530a639cb2638.tar.gz
perl: upgrade from 5.12.2 to 5.12.3
And changed the perl tarball URL to more stable cpan location. (From OE-Core rev: 3a08c401f298095840a2aee9079845f5ff434410) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl/perl-5.12.2/debian/m68k_thread_stress.diff')
-rw-r--r--meta/recipes-devtools/perl/perl-5.12.2/debian/m68k_thread_stress.diff45
1 files changed, 0 insertions, 45 deletions
diff --git a/meta/recipes-devtools/perl/perl-5.12.2/debian/m68k_thread_stress.diff b/meta/recipes-devtools/perl/perl-5.12.2/debian/m68k_thread_stress.diff
deleted file mode 100644
index d27a677638..0000000000
--- a/meta/recipes-devtools/perl/perl-5.12.2/debian/m68k_thread_stress.diff
+++ /dev/null
@@ -1,45 +0,0 @@
1Upstream-Status:Inappropriate [debian patch]
2
3Subject: Disable some threads tests on m68k for now due to missing TLS.
4Closes: #495826, #517938
5
6
7---
8 dist/threads-shared/t/stress.t | 4 ++++
9 dist/threads-shared/t/waithires.t | 6 ++++++
10 2 files changed, 10 insertions(+), 0 deletions(-)
11
12diff --git a/dist/threads-shared/t/stress.t b/dist/threads-shared/t/stress.t
13index adfd1ed..8573f1a 100755
14--- a/dist/threads-shared/t/stress.t
15+++ b/dist/threads-shared/t/stress.t
16@@ -11,6 +11,10 @@ BEGIN {
17 print("1..0 # SKIP Broken under HP-UX 10.20\n");
18 exit(0);
19 }
20+ if ($^O eq 'linux' && $Config{archname} =~ /^m68k/) {
21+ print("1..0 # Skip: no TLS on m68k yet <http://bugs.debian.org/495826>\n");
22+ exit(0);
23+ }
24 }
25
26 use ExtUtils::testlib;
27diff --git a/dist/threads-shared/t/waithires.t b/dist/threads-shared/t/waithires.t
28index e3a1086..633374e 100755
29--- a/dist/threads-shared/t/waithires.t
30+++ b/dist/threads-shared/t/waithires.t
31@@ -16,6 +16,12 @@ BEGIN {
32 if (! eval 'use Time::HiRes "time"; 1') {
33 Test::skip_all('Time::HiRes not available');
34 }
35+
36+ if ($^O eq 'linux' && $Config{archname} =~ /^m68k/) {
37+ print("1..0 # Skip: no TLS on m68k yet <http://bugs.debian.org/495826>\n");
38+ exit(0);
39+ }
40+
41 }
42
43 use ExtUtils::testlib;
44--
45tg: (c823880..) debian/m68k_thread_stress (depends on: upstream)