[svn:parrot] r44433 - trunk/compilers/pirc/t

mikehh at svn.parrot.org mikehh at svn.parrot.org
Wed Feb 24 01:39:39 UTC 2010


Author: mikehh
Date: Wed Feb 24 01:39:38 2010
New Revision: 44433
URL: https://trac.parrot.org/parrot/changeset/44433

Log:
fix perlcritic failure - add use strict/use warnings

Modified:
   trunk/compilers/pirc/t/basic.t
   trunk/compilers/pirc/t/heredoc.t
   trunk/compilers/pirc/t/macro.t
   trunk/compilers/pirc/t/stmts.t
   trunk/compilers/pirc/t/subflags.t

Modified: trunk/compilers/pirc/t/basic.t
==============================================================================
--- trunk/compilers/pirc/t/basic.t	Wed Feb 24 01:31:45 2010	(r44432)
+++ trunk/compilers/pirc/t/basic.t	Wed Feb 24 01:39:38 2010	(r44433)
@@ -2,6 +2,9 @@
 # Copyright (C) 2008-2009, Parrot Foundation.
 # $Id$
 
+use strict;
+use warnings;
+
 use lib qw(lib);
 use Parrot::Test tests => 6;
 

Modified: trunk/compilers/pirc/t/heredoc.t
==============================================================================
--- trunk/compilers/pirc/t/heredoc.t	Wed Feb 24 01:31:45 2010	(r44432)
+++ trunk/compilers/pirc/t/heredoc.t	Wed Feb 24 01:39:38 2010	(r44433)
@@ -2,6 +2,9 @@
 # Copyright (C) 2008-2009, Parrot Foundation.
 # $Id$
 
+use strict;
+use warnings;
+
 use lib qw(lib);
 use Parrot::Test tests => 1;
 

Modified: trunk/compilers/pirc/t/macro.t
==============================================================================
--- trunk/compilers/pirc/t/macro.t	Wed Feb 24 01:31:45 2010	(r44432)
+++ trunk/compilers/pirc/t/macro.t	Wed Feb 24 01:39:38 2010	(r44433)
@@ -2,6 +2,9 @@
 # Copyright (C) 2008-2009, Parrot Foundation.
 # $Id$
 
+use strict;
+use warnings;
+
 use lib qw(lib);
 use Parrot::Test tests => 1;
 

Modified: trunk/compilers/pirc/t/stmts.t
==============================================================================
--- trunk/compilers/pirc/t/stmts.t	Wed Feb 24 01:31:45 2010	(r44432)
+++ trunk/compilers/pirc/t/stmts.t	Wed Feb 24 01:39:38 2010	(r44433)
@@ -2,6 +2,9 @@
 # Copyright (C) 2008-2009, Parrot Foundation.
 # $Id$
 
+use strict;
+use warnings;
+
 use lib qw(lib);
 use Parrot::Test tests => 5;
 

Modified: trunk/compilers/pirc/t/subflags.t
==============================================================================
--- trunk/compilers/pirc/t/subflags.t	Wed Feb 24 01:31:45 2010	(r44432)
+++ trunk/compilers/pirc/t/subflags.t	Wed Feb 24 01:39:38 2010	(r44433)
@@ -2,6 +2,9 @@
 # Copyright (C) 2008-2009, Parrot Foundation.
 # $Id$
 
+use strict;
+use warnings;
+
 use lib qw(lib);
 use Parrot::Test tests => 1;
 


More information about the parrot-commits mailing list