On Wed, Aug 20, 2008 at 12:47:44PM -0500, Stephen R Marenka wrote:
> Package: perl
> Version: 5.10.0-13
> Severity: important
>
> ext/threads/shared/t/stress.t fails on m68k because we don't have TLS
> yet. I believe this test didn't exist in 5.8.8-12 and the behavior
> remains the same between perl versions.
>
> Please disable this test on m68k for now. We can revisit it once we get
> TLS operational.
Could you please confirm that it builds on m68k with the attached patch?
--
Niko Tyni [EMAIL PROTECTED]
diff --git a/ext/threads/shared/t/stress.t b/ext/threads/shared/t/stress.t
index 86a04e2..93e2311 100644
--- a/ext/threads/shared/t/stress.t
+++ b/ext/threads/shared/t/stress.t
@@ -15,6 +15,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;