[svn:parrot] r41998 - in trunk: config/auto t/steps/auto

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Wed Oct 21 22:44:26 UTC 2009


Author: jkeenan
Date: Wed Oct 21 22:44:25 2009
New Revision: 41998
URL: https://trac.parrot.org/parrot/changeset/41998

Log:
TODO two tests due to 'temporary' disabling of build frames functionality at time of pcc_reapply branch merge.  Cf.:  https://trac.parrot.org/parrot/ticket/1132.

Modified:
   trunk/config/auto/frames.pm
   trunk/t/steps/auto/frames-01.t

Modified: trunk/config/auto/frames.pm
==============================================================================
--- trunk/config/auto/frames.pm	Wed Oct 21 22:07:58 2009	(r41997)
+++ trunk/config/auto/frames.pm	Wed Oct 21 22:44:25 2009	(r41998)
@@ -50,6 +50,7 @@
         $can_build_call_frames = $conf->options->get('buildframes');
     }
     else {
+        # TODO:  TT #1132
         # Temporary disable build frames automatically.
         #$can_build_call_frames = ($nvsize == 8 && $cpuarch eq 'i386'
         #    && $osname ne 'darwin');

Modified: trunk/t/steps/auto/frames-01.t
==============================================================================
--- trunk/t/steps/auto/frames-01.t	Wed Oct 21 22:07:58 2009	(r41997)
+++ trunk/t/steps/auto/frames-01.t	Wed Oct 21 22:44:25 2009	(r41998)
@@ -44,7 +44,11 @@
 ok( $ret, "runstep() returned true value" );
 ok( defined ( $step->result() ),
     "Got defined result" );
-is( $step->result(), 'yes', "Result is 'yes', as expected" );
+TODO: {
+    local $TODO =
+        'build frames temporarily disabled at pcc_reapply merge: TT #1132';
+    is( $step->result(), 'yes', "Result is 'yes', as expected" );
+}
 $conf->cc_clean();
 $step->set_result( undef );
 
@@ -69,8 +73,13 @@
 $conf->data->set( cpuarch =>  'i386' );
 $conf->data->set( nvsize =>  8 );
 $can_build_call_frames = auto::frames::_call_frames_buildable($conf);
-ok( $can_build_call_frames,
-    "_call_frames_buildable() returned true value, as expected (i386/non darwin/8)" );
+TODO: {
+    local $TODO =
+        'build frames temporarily disabled at pcc_reapply merge: TT #1132';
+    ok( $can_build_call_frames,
+        "_call_frames_buildable() returned true value, as expected (i386/non darwin/8)"
+    );
+}
 
 $conf->data->set( osname =>  'darwin' );
 $conf->data->set( cpuarch =>  'i386' );


More information about the parrot-commits mailing list