Author: colink Date: Fri Oct 5 14:07:11 2007 New Revision: 21892 Modified: branches/unified_testing/BRANCH_TODO branches/unified_testing/languages/m4/t/basic/001_comletely_empty.t branches/unified_testing/languages/perl6/t/00-parrot/01-literals.t branches/unified_testing/languages/perl6/t/00-parrot/02-op-math.t branches/unified_testing/languages/perl6/t/00-parrot/03-op-logic.t branches/unified_testing/languages/perl6/t/00-parrot/04-op-cmp.t branches/unified_testing/languages/perl6/t/00-parrot/05-var-array.t branches/unified_testing/languages/perl6/t/00-parrot/05-var.t branches/unified_testing/languages/perl6/t/00-parrot/06-op-inplace.t branches/unified_testing/languages/perl6/t/00-parrot/07-op-string.t branches/unified_testing/languages/perl6/t/00-parrot/08-regex.t
Log: [unified testing] document that tests should run in their own directory and not anywhere else Modified: branches/unified_testing/BRANCH_TODO ============================================================================== --- branches/unified_testing/BRANCH_TODO (original) +++ branches/unified_testing/BRANCH_TODO Fri Oct 5 14:07:11 2007 @@ -9,6 +9,10 @@ This will be done with a combination of Makefile and TAP::Harness 3.0 code. +Each HLL is expected to run its tests inside of its own directory. languages/Makefile +will be changed to do this, instead of what it does now with gathering a list +of files to run via a command line switch. + Steps: 1) Make TAP::Harness run top level (t/harness) tests cleanly with no shebang issues. @@ -37,7 +41,7 @@ HQ9plus DONE jako DONE lazy-k tests only run from languages, not with runtests -lisp DONE (added perl shebang) +lisp DONE lua Most tests pass with runtests, but not all. m4 DONE? (make test reruns the suite. Why? runtests doesn't do this.) nqp DONE (fixed shebang) Modified: branches/unified_testing/languages/m4/t/basic/001_comletely_empty.t ============================================================================== --- branches/unified_testing/languages/m4/t/basic/001_comletely_empty.t (original) +++ branches/unified_testing/languages/m4/t/basic/001_comletely_empty.t Fri Oct 5 14:07:11 2007 @@ -1,4 +1,3 @@ -# m4 # $Id$ use strict; Modified: branches/unified_testing/languages/perl6/t/00-parrot/01-literals.t ============================================================================== --- branches/unified_testing/languages/perl6/t/00-parrot/01-literals.t (original) +++ branches/unified_testing/languages/perl6/t/00-parrot/01-literals.t Fri Oct 5 14:07:11 2007 @@ -1,4 +1,4 @@ -#!./parrot +#!perl6 # check literals Modified: branches/unified_testing/languages/perl6/t/00-parrot/02-op-math.t ============================================================================== --- branches/unified_testing/languages/perl6/t/00-parrot/02-op-math.t (original) +++ branches/unified_testing/languages/perl6/t/00-parrot/02-op-math.t Fri Oct 5 14:07:11 2007 @@ -1,4 +1,4 @@ -#!./parrot +#!perl6 # check basic math ops Modified: branches/unified_testing/languages/perl6/t/00-parrot/03-op-logic.t ============================================================================== --- branches/unified_testing/languages/perl6/t/00-parrot/03-op-logic.t (original) +++ branches/unified_testing/languages/perl6/t/00-parrot/03-op-logic.t Fri Oct 5 14:07:11 2007 @@ -1,4 +1,4 @@ -#!./parrot +#!perl6 # check logical ops Modified: branches/unified_testing/languages/perl6/t/00-parrot/04-op-cmp.t ============================================================================== --- branches/unified_testing/languages/perl6/t/00-parrot/04-op-cmp.t (original) +++ branches/unified_testing/languages/perl6/t/00-parrot/04-op-cmp.t Fri Oct 5 14:07:11 2007 @@ -1,4 +1,4 @@ -#!./parrot +#!perl6 # check compare ops Modified: branches/unified_testing/languages/perl6/t/00-parrot/05-var-array.t ============================================================================== --- branches/unified_testing/languages/perl6/t/00-parrot/05-var-array.t (original) +++ branches/unified_testing/languages/perl6/t/00-parrot/05-var-array.t Fri Oct 5 14:07:11 2007 @@ -1,4 +1,4 @@ -#!./parrot +#!perl6 # check array variables Modified: branches/unified_testing/languages/perl6/t/00-parrot/05-var.t ============================================================================== --- branches/unified_testing/languages/perl6/t/00-parrot/05-var.t (original) +++ branches/unified_testing/languages/perl6/t/00-parrot/05-var.t Fri Oct 5 14:07:11 2007 @@ -1,4 +1,4 @@ -#!./parrot +#!perl6 # check variables Modified: branches/unified_testing/languages/perl6/t/00-parrot/06-op-inplace.t ============================================================================== --- branches/unified_testing/languages/perl6/t/00-parrot/06-op-inplace.t (original) +++ branches/unified_testing/languages/perl6/t/00-parrot/06-op-inplace.t Fri Oct 5 14:07:11 2007 @@ -1,4 +1,4 @@ -#!./parrot +#!perl6 # check inplace math ops Modified: branches/unified_testing/languages/perl6/t/00-parrot/07-op-string.t ============================================================================== --- branches/unified_testing/languages/perl6/t/00-parrot/07-op-string.t (original) +++ branches/unified_testing/languages/perl6/t/00-parrot/07-op-string.t Fri Oct 5 14:07:11 2007 @@ -1,4 +1,4 @@ -#!./parrot +#!perl6 # check string ops Modified: branches/unified_testing/languages/perl6/t/00-parrot/08-regex.t ============================================================================== --- branches/unified_testing/languages/perl6/t/00-parrot/08-regex.t (original) +++ branches/unified_testing/languages/perl6/t/00-parrot/08-regex.t Fri Oct 5 14:07:11 2007 @@ -1,4 +1,4 @@ -#!./parrot +#!perl6 # check basic regex capabilities
