In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/4a278ec85c28bdfcfeffd327eb483181131afb8e?hp=975dff8cb7ca2790d93d15cbb8bad4c681ec8a89>

- Log -----------------------------------------------------------------
commit 4a278ec85c28bdfcfeffd327eb483181131afb8e
Author: Jesse Vincent <je...@bestpractical.com>
Date:   Tue Jun 7 23:50:37 2011 -0400

    Disable some threads tests on m68k for now due to missing TLS.
    
    A backport from downstream at Debian:
    
    perl (5.14.0-1) debian/m68k_thread_stress.diff
    
    Subject: Disable some threads tests on m68k for now due to missing TLS.
    Closes: #495826, #517938
-----------------------------------------------------------------------

Summary of changes:
 dist/threads-shared/t/stress.t    |    4 ++++
 dist/threads-shared/t/waithires.t |    6 ++++++
 2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/dist/threads-shared/t/stress.t b/dist/threads-shared/t/stress.t
index adfd1ed..8573f1a 100644
--- a/dist/threads-shared/t/stress.t
+++ b/dist/threads-shared/t/stress.t
@@ -11,6 +11,10 @@ BEGIN {
         print("1..0 # SKIP Broken under HP-UX 10.20\n");
         exit(0);
     }
+    if ($^O eq 'linux' && $Config{archname} =~ /^m68k/) {
+        print("1..0 # Skip: no TLS on m68k yet 
<http://bugs.debian.org/495826>\n");
+        exit(0);
+    }
 }
 
 use ExtUtils::testlib;
diff --git a/dist/threads-shared/t/waithires.t 
b/dist/threads-shared/t/waithires.t
index 3c3e852..349c5b4 100644
--- a/dist/threads-shared/t/waithires.t
+++ b/dist/threads-shared/t/waithires.t
@@ -16,6 +16,12 @@ BEGIN {
     if (! eval 'use Time::HiRes "time"; 1') {
         Test::skip_all('Time::HiRes not available');
     }
+
+    if ($^O eq 'linux' && $Config{archname} =~ /^m68k/) {
+        print("1..0 # Skip: no TLS on m68k yet 
<http://bugs.debian.org/495826>\n");
+        exit(0);
+    }
+
 }
 
 use ExtUtils::testlib;

--
Perl5 Master Repository

Reply via email to