[svn:parrot] r42773 - in trunk/t: compilers/imcc/syn compilers/pge compilers/tge library

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Sat Nov 21 20:41:52 UTC 2009


Author: jkeenan
Date: Sat Nov 21 20:41:51 2009
New Revision: 42773
URL: https://trac.parrot.org/parrot/changeset/42773

Log:
Add DESCRIPTION section to Pod (or correct things keeping file from passing codingstd test).

Modified:
   trunk/t/compilers/imcc/syn/file.t
   trunk/t/compilers/imcc/syn/pod.t
   trunk/t/compilers/imcc/syn/subflags.t
   trunk/t/compilers/pge/pge-hs.t
   trunk/t/compilers/pge/pge.t
   trunk/t/compilers/pge/pge_examples.t
   trunk/t/compilers/pge/pge_globs.t
   trunk/t/compilers/pge/pge_util.t
   trunk/t/compilers/pge/regression.t
   trunk/t/compilers/tge/basic.t
   trunk/t/compilers/tge/parser.t
   trunk/t/library/configure.t
   trunk/t/library/mt19937ar.t
   trunk/t/library/rand.t
   trunk/t/library/string_utils.t
   trunk/t/library/tcl_glob.t
   trunk/t/library/tcl_lib.t
   trunk/t/library/uuid.t

Modified: trunk/t/compilers/imcc/syn/file.t
==============================================================================
--- trunk/t/compilers/imcc/syn/file.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/compilers/imcc/syn/file.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -19,7 +19,7 @@
 
 syn/file.t - test inclusion of files
 
-=head1 SYNOPSIS
+=head1 DESCRIPTION
 
 A test script which is supposed to be called by Test::Harness.
 

Modified: trunk/t/compilers/imcc/syn/pod.t
==============================================================================
--- trunk/t/compilers/imcc/syn/pod.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/compilers/imcc/syn/pod.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -9,7 +9,20 @@
 use Parrot::Config;
 use Parrot::Test tests => 4;
 
-# POD
+=head1 NAME
+
+t/compilers/imcc/syn/pod.t
+
+=head1 SYNOPSIS
+
+    % prove t/compilers/imcc/syn/pod.t
+
+=head1 DESCRIPTION
+
+Tests PIR's handling of Plain Old Documentation (POD) format.
+
+=cut
+
 
 pir_output_is( <<'CODE', <<'OUT', "simple pod" );
 .sub test :main

Modified: trunk/t/compilers/imcc/syn/subflags.t
==============================================================================
--- trunk/t/compilers/imcc/syn/subflags.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/compilers/imcc/syn/subflags.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -4,7 +4,7 @@
 
 =head1 NAME
 
-t/compilers/imcc/syn/subflags.t  - test flags on PIR subs
+t/compilers/imcc/syn/subflags.t 
 
 =head1 SYNOPSIS
 
@@ -12,6 +12,8 @@
 
 =head1 DESCRIPTION
 
+test flags on PIR subs
+
 =cut
 
 .namespace ['FlagTest']

Modified: trunk/t/compilers/pge/pge-hs.t
==============================================================================
--- trunk/t/compilers/pge/pge-hs.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/compilers/pge/pge-hs.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -10,12 +10,16 @@
 
 =head1 NAME
 
-t/library/pge-hs.t - Grammar Engine Haskell Output tests
+t/library/pge-hs.t
 
 =head1 SYNOPSIS
 
         % prove t/library/pge-hs.t
 
+=head1 DESCRIPTION
+
+Grammar Engine Haskell Output tests
+
 =cut
 
 # 1

Modified: trunk/t/compilers/pge/pge.t
==============================================================================
--- trunk/t/compilers/pge/pge.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/compilers/pge/pge.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -11,12 +11,16 @@
 
 =head1 NAME
 
-t/library/pge.t - Parrot Grammar Engine basic tests
+t/library/pge.t
 
 =head1 SYNOPSIS
 
         % prove -Ilib t/library/pge.t
 
+=head1 DESCRIPTION
+
+Parrot Grammar Engine basic tests
+
 =cut
 
 ## definition of PGE public api

Modified: trunk/t/compilers/pge/pge_examples.t
==============================================================================
--- trunk/t/compilers/pge/pge_examples.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/compilers/pge/pge_examples.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -12,12 +12,16 @@
 
 =head1 NAME
 
-t/library/pge_examples.t - Parrot Grammar Engine tests of examples
+t/library/pge_examples.t
 
 =head1 SYNOPSIS
 
     % prove t/compilers/pge/pge_examples.t
 
+=head1 DESCRIPTION
+
+Parrot Grammar Engine tests of examples
+
 =cut
 
 # 1

Modified: trunk/t/compilers/pge/pge_globs.t
==============================================================================
--- trunk/t/compilers/pge/pge_globs.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/compilers/pge/pge_globs.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -11,12 +11,16 @@
 
 =head1 NAME
 
-t/library/pge_globs.t - Parrot Grammar Engine tests of globs
+t/library/pge_globs.t
 
 =head1 SYNOPSIS
 
         % prove -Ilib t/library/pge_globs.t
 
+=head1 DESCRIPTION
+
+Parrot Grammar Engine tests of globs
+
 =cut
 
 ## literal match

Modified: trunk/t/compilers/pge/pge_util.t
==============================================================================
--- trunk/t/compilers/pge/pge_util.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/compilers/pge/pge_util.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -11,12 +11,16 @@
 
 =head1 NAME
 
-t/library/pge_util.t - Parrot Grammar Engine tests of utility rules
+t/library/pge_util.t
 
 =head1 SYNOPSIS
 
         % prove -Ilib t/library/pge_util.t
 
+=head1 DESCRIPTION
+
+Parrot Grammar Engine tests of utility rules
+
 =cut
 
 my $str = "How will this\nstring choose\nto explode?\n\nTest";

Modified: trunk/t/compilers/pge/regression.t
==============================================================================
--- trunk/t/compilers/pge/regression.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/compilers/pge/regression.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -10,12 +10,16 @@
 
 =head1 NAME
 
-t/compilers/pge/regression.t - PGE regression tests
+t/compilers/pge/regression.t
 
 =head1 SYNOPSIS
 
         % prove t/compilers/pge/regression.t
 
+=head1 DESCRIPTION
+
+PGE regression tests
+
 =cut
 
 pir_output_is( <<'CODE', <<'OUTPUT', 'load_bytecode with .pir' );

Modified: trunk/t/compilers/tge/basic.t
==============================================================================
--- trunk/t/compilers/tge/basic.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/compilers/tge/basic.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -10,12 +10,16 @@
 
 =head1 NAME
 
-t/basic.t - testing a few basic components of TGE::Grammar and TGE::Tree
+t/basic.t
 
 =head1 SYNOPSIS
 
         $ prove t/compilers/tge/basic.t
 
+=head1 DESCRIPTION
+
+testing a few basic components of TGE::Grammar and TGE::Tree
+
 =cut
 
 pir_output_is( <<'CODE', <<'OUT', 'build up a basic rule in a grammar' );

Modified: trunk/t/compilers/tge/parser.t
==============================================================================
--- trunk/t/compilers/tge/parser.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/compilers/tge/parser.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -10,12 +10,16 @@
 
 =head1 NAME
 
-t/parser.t - TGE::Parser tests
+t/parser.t
 
 =head1 SYNOPSIS
 
         $ prove t/compilers/tge/parser.t
 
+=head1 DESCRIPTION
+
+TGE::Parser tests
+
 =cut
 
 pir_output_is( <<'CODE', <<'OUT', "parse a basic attribute grammar" );

Modified: trunk/t/library/configure.t
==============================================================================
--- trunk/t/library/configure.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/library/configure.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -4,7 +4,11 @@
 
 =head1 NAME
 
-t/library/configure.t - Test the Configure PBC
+t/library/configure.t
+
+=head1 DESCRIPTION
+
+Test the Configure PBC
 
 =head1 SYNOPSIS
 

Modified: trunk/t/library/mt19937ar.t
==============================================================================
--- trunk/t/library/mt19937ar.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/library/mt19937ar.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -4,7 +4,11 @@
 
 =head1 NAME
 
-t/library/mt19937ar.t - Math::Random::MT tests
+t/library/mt19937ar.t
+
+=head1 DESCRIPTION
+
+Math::Random::MT tests
 
 =head1 SYNOPSIS
 

Modified: trunk/t/library/rand.t
==============================================================================
--- trunk/t/library/rand.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/library/rand.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -4,7 +4,11 @@
 
 =head1 NAME
 
-t/library/rand.t - Test the Math::Rand PBC
+t/library/rand.t
+
+=head1 DESCRIPTION
+
+Test the Math::Rand PBC
 
 =head1 SYNOPSIS
 

Modified: trunk/t/library/string_utils.t
==============================================================================
--- trunk/t/library/string_utils.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/library/string_utils.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -4,7 +4,11 @@
 
 =head1 NAME
 
-t/library/string_utils.t  -- Tests for String/Utils.pbc
+t/library/string_utils.t
+
+=head1 DESCRIPTION
+
+Tests for String/Utils.pbc
 
 =head1 SYNOPSIS
 

Modified: trunk/t/library/tcl_glob.t
==============================================================================
--- trunk/t/library/tcl_glob.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/library/tcl_glob.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -4,14 +4,16 @@
 
 =head1 NAME
 
-t/library/tcl_glob.t - test tcl-style globs
+t/library/tcl_glob.t
+
+=head1 DESCRIPTION
+
+test tcl-style globs
 
 =head1 SYNOPSIS
 
     % prove t/library/tcl_glob.t
 
-=head1 DESCRIPTION
-
 =cut
 
 .sub 'main' :main

Modified: trunk/t/library/tcl_lib.t
==============================================================================
--- trunk/t/library/tcl_lib.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/library/tcl_lib.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -4,14 +4,16 @@
 
 =head1 NAME
 
-t/library/tcl_lib.t - test parrot to external Tcl connection
+t/library/tcl_lib.t
+
+=head1 DESCRIPTION
+
+test parrot to external Tcl connection
 
 =head1 SYNOPSIS
 
     % prove t/library/tcl_lib.t
 
-=head1 DESCRIPTION
-
 =cut
 
 .const int TESTS = 1

Modified: trunk/t/library/uuid.t
==============================================================================
--- trunk/t/library/uuid.t	Sat Nov 21 20:21:37 2009	(r42772)
+++ trunk/t/library/uuid.t	Sat Nov 21 20:41:51 2009	(r42773)
@@ -10,12 +10,16 @@
 
 =head1 NAME
 
-t/library/uuid.t - uuid library tests
+t/library/uuid.t
 
 =head1 SYNOPSIS
 
     % prove t/library/uuid.t
 
+=head1 DESCRIPTION
+
+uuid library tests
+
 =cut
 
 pir_output_is( << 'CODE', << 'OUTPUT', 'generate' );


More information about the parrot-commits mailing list