Author: paultcochrane Date: Tue Dec 4 04:30:29 2007 New Revision: 23448 Modified: trunk/t/src/vtables.t trunk/t/src/warnings.t
Log: [t] TODOed two tests which give unresolved externals errors on Win32 Modified: trunk/t/src/vtables.t ============================================================================== --- trunk/t/src/vtables.t (original) +++ trunk/t/src/vtables.t Tue Dec 4 04:30:29 2007 @@ -135,8 +135,11 @@ ok OUTPUT [EMAIL PROTECTED] = $^O =~ /MSWin32/ + ? ( todo => 'Unresolved externals on Win32' ) : (); + # XXX why isn't parrot written with an upper case 'p' here? -c_output_is( <<'CODE', <<'OUTPUT', "parrot_alloc_vtables" ); +c_output_is( <<'CODE', <<'OUTPUT', "parrot_alloc_vtables", @TODO ); #include <parrot/parrot.h> #include <parrot/embed.h> Modified: trunk/t/src/warnings.t ============================================================================== --- trunk/t/src/warnings.t (original) +++ trunk/t/src/warnings.t Tue Dec 4 04:30:29 2007 @@ -10,6 +10,9 @@ plan tests => 3; +my @TODO = $^O =~ /MSWin32/ + ? ( todo => 'Unresolved externals on Win32' ) : (); + =head1 NAME t/src/warnings.t - Parrot warnings @@ -28,7 +31,7 @@ =cut -c_output_is( <<'CODE', <<'OUTPUT', "print_pbc_location" ); +c_output_is( <<'CODE', <<'OUTPUT', "print_pbc_location", @TODO ); #include <parrot/parrot.h> #include <parrot/embed.h>