[svn:parrot] r36900 - trunk/t/pmc

chromatic at svn.parrot.org chromatic at svn.parrot.org
Fri Feb 20 01:38:22 UTC 2009


Author: chromatic
Date: Fri Feb 20 01:38:21 2009
New Revision: 36900
URL: https://trac.parrot.org/parrot/changeset/36900

Log:
[t] Removed a skipped test for the non-existent instantiate opcode.

Modified:
   trunk/t/pmc/pmc.t

Modified: trunk/t/pmc/pmc.t
==============================================================================
--- trunk/t/pmc/pmc.t	Fri Feb 20 01:36:43 2009	(r36899)
+++ trunk/t/pmc/pmc.t	Fri Feb 20 01:38:21 2009	(r36900)
@@ -1,5 +1,5 @@
 #!perl
-# Copyright (C) 2001-2007, Parrot Foundation.
+# Copyright (C) 2001-2009, Parrot Foundation.
 # $Id$
 
 use strict;
@@ -7,8 +7,8 @@
 use lib qw( . lib ../lib ../../lib );
 
 use Test::More;
-use Parrot::Test tests => 16;
-use Parrot::PMC qw(%pmc_types);
+use Parrot::Test tests => 15;
+use Parrot::PMC '%pmc_types';
 
 =head1 NAME
 
@@ -174,26 +174,6 @@
 1001
 OUTPUT
 
-SKIP: {
-    skip( "no instantiate", 1 );
-    pasm_output_is( <<'CODE', <<'OUTPUT', "instantiate - no args" );
-    get_class P2, "Integer"
-    set I0, 0   # unproto
-    set I3, 0   # no P args
-    instantiate P3
-    typeof S0, P3
-    print S0
-    print "\n"
-    set I0, P3
-    print I0
-    print "\n"
-    end
-CODE
-Integer
-0
-OUTPUT
-}
-
 pasm_output_is( <<'CODE', <<'OUT', ".const - Sub constant" );
 .pcc_sub :main main:
     print "ok 1\n"


More information about the parrot-commits mailing list