[svn:parrot] r36548 - trunk/t/src

particle at svn.parrot.org particle at svn.parrot.org
Tue Feb 10 17:35:56 UTC 2009


Author: particle
Date: Tue Feb 10 17:35:56 2009
New Revision: 36548
URL: https://trac.parrot.org/parrot/changeset/36548

Log:
TT #306: embedding parrot fails, many symbols not exported properly

Modified:
   trunk/t/src/compiler.t

Modified: trunk/t/src/compiler.t
==============================================================================
--- trunk/t/src/compiler.t	Tue Feb 10 17:32:02 2009	(r36547)
+++ trunk/t/src/compiler.t	Tue Feb 10 17:35:56 2009	(r36548)
@@ -6,7 +6,9 @@
 use warnings;
 use lib qw( . lib ../lib ../../lib );
 use Test::More;
-use Parrot::Test tests => 5;
+use Parrot::Test;
+
+plan skip_all => 'TT #306; many symbols not exported, embedding parrot fails';
 
 =head1 NAME
 
@@ -26,9 +28,7 @@
 c_output_is( <<'CODE', <<'OUTPUT', "Parrot Compile API Single call" );
 
 #include <stdio.h>
-#include "parrot/parrot.h"
 #include "parrot/embed.h"
-#include "parrot/extend.h"
 
 static opcode_t *
 run(PARROT_INTERP, int argc, char *argv[])
@@ -108,9 +108,7 @@
 c_output_is( <<'CODE', <<'OUTPUT', "Parrot Compile API Multiple Calls" );
 
 #include <stdio.h>
-#include "parrot/parrot.h"
 #include "parrot/embed.h"
-#include "parrot/extend.h"
 
 static void
 compile_run(PARROT_INTERP, const char *src, STRING *type, int argc,
@@ -201,9 +199,7 @@
 c_output_is( <<'CODE', <<'OUTPUT', "Parrot Compile API Multiple 1st bad PIR" );
 
 #include <stdio.h>
-#include "parrot/parrot.h"
 #include "parrot/embed.h"
-#include "parrot/extend.h"
 
 static void
 compile_run(PARROT_INTERP, const char *src, STRING *type, int argc,
@@ -294,9 +290,7 @@
 c_output_is( <<'CODE', <<'OUTPUT', "Parrot Compile API Multiple 2nd bad PIR" );
 
 #include <stdio.h>
-#include "parrot/parrot.h"
 #include "parrot/embed.h"
-#include "parrot/extend.h"
 
 static void
 compile_run(PARROT_INTERP, const char *src, STRING *type, int argc,
@@ -386,9 +380,7 @@
 c_output_is( <<'CODE', <<'OUTPUT', "Parrot Compile API Multiple bad PIR" );
 
 #include <stdio.h>
-#include "parrot/parrot.h"
 #include "parrot/embed.h"
-#include "parrot/extend.h"
 
 static void
 compile_run(PARROT_INTERP, const char *src, STRING *type, int argc,


More information about the parrot-commits mailing list