[svn:parrot] r40470 - in trunk: . lib/Parrot/Test t/configure

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Sun Aug 9 23:22:04 UTC 2009


Author: jkeenan
Date: Sun Aug  9 23:22:04 2009
New Revision: 40470
URL: https://trac.parrot.org/parrot/changeset/40470

Log:
Revise Configure.pl POD and other docs to reflect file movement.

Modified:
   trunk/Configure.pl
   trunk/lib/Parrot/Test/Pod.pm
   trunk/t/configure/008-file_based_configuration.t

Modified: trunk/Configure.pl
==============================================================================
--- trunk/Configure.pl	Sun Aug  9 22:36:26 2009	(r40469)
+++ trunk/Configure.pl	Sun Aug  9 23:22:04 2009	(r40470)
@@ -652,11 +652,11 @@
 
 You may see how this works in practice by calling:
 
-    perl Configure.pl --file=xconf/samples/yourfoobar
+    perl Configure.pl --file=examples/config/file/configcompiler
 
 or
 
-    perl Configure.pl --file=xconf/samples/testfoobar
+    perl Configure.pl --file=examples/config/file/configwithfatalstep
 
 =head1 SEE ALSO
 

Modified: trunk/lib/Parrot/Test/Pod.pm
==============================================================================
--- trunk/lib/Parrot/Test/Pod.pm	Sun Aug  9 22:36:26 2009	(r40469)
+++ trunk/lib/Parrot/Test/Pod.pm	Sun Aug  9 23:22:04 2009	(r40470)
@@ -45,13 +45,13 @@
                 if ($full_file =~ m{
                         t/tools/dev/searchops/samples\.pm
                         | languages/pod/test\.pod
-                        | xconf/samples/yourfoobar
+                        | examples/config/file/configcompiler
                         | t/configure/testlib/verbosefoobar
                         | t/configure/testlib/ddefectivefoobar
                         | t/configure/testlib/adefectivefoobar
                         | t/configure/testlib/cdefectivefoobar
                         | t/configure/testlib/bdefectivefoobar
-                        | xconf/samples/testfoobar
+                        | examples/config/file/configwithfatalstep
                     }x
                 ) {
                     delete $files_needing_analysis->{ $file };

Modified: trunk/t/configure/008-file_based_configuration.t
==============================================================================
--- trunk/t/configure/008-file_based_configuration.t	Sun Aug  9 22:36:26 2009	(r40469)
+++ trunk/t/configure/008-file_based_configuration.t	Sun Aug  9 23:22:04 2009	(r40470)
@@ -17,7 +17,7 @@
 use Parrot::Configure::Options qw| process_options |;
 
 {
-    my $configfile = q{xconf/samples/testfoobar};
+    my $configfile = q{examples/config/file/configwithfatalstep};
     my ($args, $steps_list_ref) = _test_good_config_file($configfile);
 
     ok(! defined $args->{maintainer}, 
@@ -40,7 +40,7 @@
 }
 
 {
-    my $configfile = q{xconf/samples/yourfoobar};
+    my $configfile = q{examples/config/file/configcompiler};
     my ($args, $steps_list_ref) = _test_good_config_file($configfile);
     
     my $c_compiler = '/usr/bin/gcc';


More information about the parrot-commits mailing list