Index: t/a.t =================================================================== RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Glib/t/a.t,v retrieving revision 1.3 diff -u -r1.3 a.t --- t/a.t 21 Sep 2003 16:59:16 -0000 1.3 +++ t/a.t 14 Jan 2004 03:59:05 -0000 @@ -2,10 +2,11 @@ use strict; use warnings; -use Test::More tests => 8; +use Test::More; use Glib; use Data::Dumper; +use Config; package Foo; @@ -14,6 +15,12 @@ package main; +if ($Config{archname} =~ m/^x86_64/) { + plan skip_all => "g_log doubles messages by accident on x86_64"; +} else { + plan tests => 8; +} + $SIG{__WARN__} = sub { ok(1, "in __WARN__: $_[0]"); }; #$SIG{__DIE__} = sub { ok(1, 'in __DIE__'); };