[svn:parrot] r44431 - trunk/compilers/ncigen/t
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Wed Feb 24 01:12:00 UTC 2010
Author: mikehh
Date: Wed Feb 24 01:11:59 2010
New Revision: 44431
URL: https://trac.parrot.org/parrot/changeset/44431
Log:
fix perlcritic failure - add use strict/use warnings
Modified:
trunk/compilers/ncigen/t/parse_00.t
trunk/compilers/ncigen/t/parse_01.t
trunk/compilers/ncigen/t/parse_02.t
Modified: trunk/compilers/ncigen/t/parse_00.t
==============================================================================
--- trunk/compilers/ncigen/t/parse_00.t Wed Feb 24 00:56:10 2010 (r44430)
+++ trunk/compilers/ncigen/t/parse_00.t Wed Feb 24 01:11:59 2010 (r44431)
@@ -2,6 +2,9 @@
# Copyright (C) 2008-2010, Parrot Foundation.
# $Id$
+use strict;
+use warnings;
+
use lib ('./lib', '../../lib');
use Parrot::Test::NCIGENAST;
Modified: trunk/compilers/ncigen/t/parse_01.t
==============================================================================
--- trunk/compilers/ncigen/t/parse_01.t Wed Feb 24 00:56:10 2010 (r44430)
+++ trunk/compilers/ncigen/t/parse_01.t Wed Feb 24 01:11:59 2010 (r44431)
@@ -2,6 +2,9 @@
# Copyright (C) 2008-2010, Parrot Foundation.
# $Id$
+use strict;
+use warnings;
+
use lib ('./lib', '../../lib');
use Parrot::Test::NCIGENAST;
Modified: trunk/compilers/ncigen/t/parse_02.t
==============================================================================
--- trunk/compilers/ncigen/t/parse_02.t Wed Feb 24 00:56:10 2010 (r44430)
+++ trunk/compilers/ncigen/t/parse_02.t Wed Feb 24 01:11:59 2010 (r44431)
@@ -2,6 +2,9 @@
# Copyright (C) 2008-2010, Parrot Foundation.
# $Id$
+use strict;
+use warnings;
+
use lib ('./lib', '../../lib');
use Parrot::Test::NCIGENAST;
More information about the parrot-commits
mailing list