[svn:parrot] r44538 - in trunk/t: . configure tools/pmc2cutils

coke at svn.parrot.org coke at svn.parrot.org
Sun Feb 28 02:46:10 UTC 2010


Author: coke
Date: Sun Feb 28 02:46:06 2010
New Revision: 44538
URL: https://trac.parrot.org/parrot/changeset/44538

Log:
Don't use something if you're not going to use it.

Modified:
   trunk/t/configure/025-options_test.t
   trunk/t/configure/026-options_test.t
   trunk/t/harness
   trunk/t/tools/pmc2cutils/03-dump_vtable.t
   trunk/t/tools/pmc2cutils/04-dump_pmc.t

Modified: trunk/t/configure/025-options_test.t
==============================================================================
--- trunk/t/configure/025-options_test.t	Sat Feb 27 22:13:23 2010	(r44537)
+++ trunk/t/configure/025-options_test.t	Sun Feb 28 02:46:06 2010	(r44538)
@@ -7,7 +7,6 @@
 use warnings;
 use Carp;
 use Cwd;
-use Data::Dumper;
 use File::Temp qw( tempdir );
 use Test::More tests =>  7;
 use lib qw( lib );

Modified: trunk/t/configure/026-options_test.t
==============================================================================
--- trunk/t/configure/026-options_test.t	Sat Feb 27 22:13:23 2010	(r44537)
+++ trunk/t/configure/026-options_test.t	Sun Feb 28 02:46:06 2010	(r44538)
@@ -7,7 +7,6 @@
 use warnings;
 use Carp;
 use Cwd;
-use Data::Dumper;
 use Test::More tests => 20;
 use lib qw( lib );
 use IO::CaptureOutput qw| capture |;

Modified: trunk/t/harness
==============================================================================
--- trunk/t/harness	Sat Feb 27 22:13:23 2010	(r44537)
+++ trunk/t/harness	Sun Feb 28 02:46:06 2010	(r44538)
@@ -4,7 +4,6 @@
 
 use strict;
 use warnings;
-use Data::Dumper;$Data::Dumper::Indent=1;
 use lib qw( lib );
 
 use Getopt::Std;

Modified: trunk/t/tools/pmc2cutils/03-dump_vtable.t
==============================================================================
--- trunk/t/tools/pmc2cutils/03-dump_vtable.t	Sat Feb 27 22:13:23 2010	(r44537)
+++ trunk/t/tools/pmc2cutils/03-dump_vtable.t	Sun Feb 28 02:46:06 2010	(r44538)
@@ -23,7 +23,6 @@
 use_ok('Parrot::Pmc2c::Pmc2cMain');
 use_ok('File::Basename');
 use_ok( 'File::Temp', qw| tempdir | );
-use Data::Dumper;
 
 my ( %opt, @include, @args );
 my $self;

Modified: trunk/t/tools/pmc2cutils/04-dump_pmc.t
==============================================================================
--- trunk/t/tools/pmc2cutils/04-dump_pmc.t	Sat Feb 27 22:13:23 2010	(r44537)
+++ trunk/t/tools/pmc2cutils/04-dump_pmc.t	Sun Feb 28 02:46:06 2010	(r44538)
@@ -23,7 +23,6 @@
 use File::Basename;
 use File::Copy;
 use FindBin;
-use Data::Dumper;
 use_ok('Parrot::Pmc2c::Pmc2cMain');
 use_ok('Cwd');
 use_ok( 'File::Temp', qw| tempdir | );


More information about the parrot-commits mailing list