[svn:parrot] r43329 - branches/one_make/compilers/nqp/t

coke at svn.parrot.org coke at svn.parrot.org
Thu Dec 31 00:56:14 UTC 2009


Author: coke
Date: Thu Dec 31 00:56:11 2009
New Revision: 43329
URL: https://trac.parrot.org/parrot/changeset/43329

Log:
Remove shebangs - were causing sporadic [0] test failures.

[0] unsure why.

Modified:
   branches/one_make/compilers/nqp/t/01-literals.t
   branches/one_make/compilers/nqp/t/02-if-else.t
   branches/one_make/compilers/nqp/t/02-if.t
   branches/one_make/compilers/nqp/t/03-unless.t
   branches/one_make/compilers/nqp/t/04-comments.t
   branches/one_make/compilers/nqp/t/05-pod.t
   branches/one_make/compilers/nqp/t/06-args-pos.t
   branches/one_make/compilers/nqp/t/07-boolean.t
   branches/one_make/compilers/nqp/t/08-blocks.t
   branches/one_make/compilers/nqp/t/09-var.t
   branches/one_make/compilers/nqp/t/10-sub.t
   branches/one_make/compilers/nqp/t/11-cmp.t
   branches/one_make/compilers/nqp/t/12-list.t
   branches/one_make/compilers/nqp/t/13-logical.t
   branches/one_make/compilers/nqp/t/14-op.t
   branches/one_make/compilers/nqp/t/15-module.t
   branches/one_make/compilers/nqp/t/16-while.t
   branches/one_make/compilers/nqp/t/17-class.t
   branches/one_make/compilers/nqp/t/18-inline.t
   branches/one_make/compilers/nqp/t/19-hash_access.t
   branches/one_make/compilers/nqp/t/20-list_access.t
   branches/one_make/compilers/nqp/t/22-optional_args.t
   branches/one_make/compilers/nqp/t/23-named_args.t
   branches/one_make/compilers/nqp/t/24-scalar_context.t
   branches/one_make/compilers/nqp/t/25-list_context.t
   branches/one_make/compilers/nqp/t/26-method_ops.t
   branches/one_make/compilers/nqp/t/27-ternary.t
   branches/one_make/compilers/nqp/t/28-return.t
   branches/one_make/compilers/nqp/t/29-self.t
   branches/one_make/compilers/nqp/t/30-subclass.t

Modified: branches/one_make/compilers/nqp/t/01-literals.t
==============================================================================
--- branches/one_make/compilers/nqp/t/01-literals.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/01-literals.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check literals
 
 say('1..8');

Modified: branches/one_make/compilers/nqp/t/02-if-else.t
==============================================================================
--- branches/one_make/compilers/nqp/t/02-if-else.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/02-if-else.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check control structure 'if ... else'
 
 say('1..14');

Modified: branches/one_make/compilers/nqp/t/02-if.t
==============================================================================
--- branches/one_make/compilers/nqp/t/02-if.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/02-if.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check control structure 'if'
 
 say('1..4');

Modified: branches/one_make/compilers/nqp/t/03-unless.t
==============================================================================
--- branches/one_make/compilers/nqp/t/03-unless.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/03-unless.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check control structure 'unless'
 
 say('1..4');

Modified: branches/one_make/compilers/nqp/t/04-comments.t
==============================================================================
--- branches/one_make/compilers/nqp/t/04-comments.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/04-comments.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check comments
 
 say('1..2');

Modified: branches/one_make/compilers/nqp/t/05-pod.t
==============================================================================
--- branches/one_make/compilers/nqp/t/05-pod.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/05-pod.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check pod
 
 say('1..4');

Modified: branches/one_make/compilers/nqp/t/06-args-pos.t
==============================================================================
--- branches/one_make/compilers/nqp/t/06-args-pos.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/06-args-pos.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # positional arguments
 
 say('1..2');

Modified: branches/one_make/compilers/nqp/t/07-boolean.t
==============================================================================
--- branches/one_make/compilers/nqp/t/07-boolean.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/07-boolean.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # Testing boolean context operators, ! and ?
 
 plan(8);

Modified: branches/one_make/compilers/nqp/t/08-blocks.t
==============================================================================
--- branches/one_make/compilers/nqp/t/08-blocks.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/08-blocks.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check blocks and statement enders
 
 say('1..7');

Modified: branches/one_make/compilers/nqp/t/09-var.t
==============================================================================
--- branches/one_make/compilers/nqp/t/09-var.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/09-var.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check variables
 
 say('1..14');

Modified: branches/one_make/compilers/nqp/t/10-sub.t
==============================================================================
--- branches/one_make/compilers/nqp/t/10-sub.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/10-sub.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check subs
 
 say('1..11');

Modified: branches/one_make/compilers/nqp/t/11-cmp.t
==============================================================================
--- branches/one_make/compilers/nqp/t/11-cmp.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/11-cmp.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check comparisons
 
 say('1..19');

Modified: branches/one_make/compilers/nqp/t/12-list.t
==============================================================================
--- branches/one_make/compilers/nqp/t/12-list.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/12-list.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # lists and for
 
 plan(3);

Modified: branches/one_make/compilers/nqp/t/13-logical.t
==============================================================================
--- branches/one_make/compilers/nqp/t/13-logical.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/13-logical.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check '||' and '&&'
 
 plan(4);

Modified: branches/one_make/compilers/nqp/t/14-op.t
==============================================================================
--- branches/one_make/compilers/nqp/t/14-op.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/14-op.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # checking basic operands and circumfix:( )
 
 plan(29);

Modified: branches/one_make/compilers/nqp/t/15-module.t
==============================================================================
--- branches/one_make/compilers/nqp/t/15-module.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/15-module.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check module
 
 XYZ::sayfoo();

Modified: branches/one_make/compilers/nqp/t/16-while.t
==============================================================================
--- branches/one_make/compilers/nqp/t/16-while.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/16-while.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # while, until statements
 
 plan(8);

Modified: branches/one_make/compilers/nqp/t/17-class.t
==============================================================================
--- branches/one_make/compilers/nqp/t/17-class.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/17-class.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # class
 
 plan(1);

Modified: branches/one_make/compilers/nqp/t/18-inline.t
==============================================================================
--- branches/one_make/compilers/nqp/t/18-inline.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/18-inline.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # inline
 
 plan(7);

Modified: branches/one_make/compilers/nqp/t/19-hash_access.t
==============================================================================
--- branches/one_make/compilers/nqp/t/19-hash_access.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/19-hash_access.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check hash access methods
 
 plan(7);

Modified: branches/one_make/compilers/nqp/t/20-list_access.t
==============================================================================
--- branches/one_make/compilers/nqp/t/20-list_access.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/20-list_access.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # check list access methods
 
 plan(7);

Modified: branches/one_make/compilers/nqp/t/22-optional_args.t
==============================================================================
--- branches/one_make/compilers/nqp/t/22-optional_args.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/22-optional_args.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # test optional arguments and parameters
 
 plan(3);

Modified: branches/one_make/compilers/nqp/t/23-named_args.t
==============================================================================
--- branches/one_make/compilers/nqp/t/23-named_args.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/23-named_args.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # test named parameters and arguments
 
 plan(4);

Modified: branches/one_make/compilers/nqp/t/24-scalar_context.t
==============================================================================
--- branches/one_make/compilers/nqp/t/24-scalar_context.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/24-scalar_context.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # scalar context
 
 plan(1);

Modified: branches/one_make/compilers/nqp/t/25-list_context.t
==============================================================================
--- branches/one_make/compilers/nqp/t/25-list_context.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/25-list_context.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # list context
 
 plan(1);

Modified: branches/one_make/compilers/nqp/t/26-method_ops.t
==============================================================================
--- branches/one_make/compilers/nqp/t/26-method_ops.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/26-method_ops.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # method ops (just method calls for now)
 
 plan(3);

Modified: branches/one_make/compilers/nqp/t/27-ternary.t
==============================================================================
--- branches/one_make/compilers/nqp/t/27-ternary.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/27-ternary.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # the ternary ?? !! operator
 
 plan(8);

Modified: branches/one_make/compilers/nqp/t/28-return.t
==============================================================================
--- branches/one_make/compilers/nqp/t/28-return.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/28-return.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # implicit and explicit returns from subs
 
 plan(3);

Modified: branches/one_make/compilers/nqp/t/29-self.t
==============================================================================
--- branches/one_make/compilers/nqp/t/29-self.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/29-self.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 plan(3);
 
 class Foo {

Modified: branches/one_make/compilers/nqp/t/30-subclass.t
==============================================================================
--- branches/one_make/compilers/nqp/t/30-subclass.t	Wed Dec 30 20:24:46 2009	(r43328)
+++ branches/one_make/compilers/nqp/t/30-subclass.t	Thu Dec 31 00:56:11 2009	(r43329)
@@ -1,5 +1,3 @@
-#!./parrot nqp.pbc
-
 # class inheritance
 
 plan(6);


More information about the parrot-commits mailing list