Signals no worky under x86_64. I don't really understand why. Seeing as we're skipping on lots of platforms anyway, I've added it to the list of skipped platforms.
Leon -- Leon Brocard.............................http://www.astray.com/ scribot.................................http://www.scribot.com/ ... (the gentle sound of crashing software)
Index: t/pmc/signal.t =================================================================== RCS file: /cvs/public/parrot/t/pmc/signal.t,v retrieving revision 1.8 diff -u -r1.8 signal.t --- t/pmc/signal.t 18 Mar 2004 16:24:16 -0000 1.8 +++ t/pmc/signal.t 31 Mar 2004 09:59:40 -0000 @@ -18,18 +18,20 @@ use Parrot::Test; use Test::More; +use POSIX ('uname'); use strict; +my $arch = (uname())[-1]; + my %platforms = map {$_=>1} qw/ hpux linux /; -if ($platforms{$^O}) { - plan tests => 3 * 2; -} -else { +if ($arch eq 'x86_64' || !$platforms{$^O}) { plan skip_all => 'No events yet'; +} else { + plan tests => 3 * 2; } #