You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by st...@apache.org on 2004/12/20 16:03:01 UTC

svn commit: r122853 - in httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf: . sample

Author: stas
Date: Mon Dec 20 07:02:55 2004
New Revision: 122853

URL: http://svn.apache.org/viewcvs?view=rev&rev=122853
Log:
give the config files consistent naming

Added:
   httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_apache_test_core.pl
      - copied, changed from r122851, httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache_test_config.pm
   httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_mp2_core.pl
      - copied unchanged from r122852, httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm
   httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_mp2_modules.pl
      - copied unchanged from r122851, httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache2_modules_testitself_config.pm
Removed:
   httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache2_modules_testitself_config.pm
   httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache_test_config.pm
   httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm
Modified:
   httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/README

Modified: httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/README
Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/README?view=diff&rev=122853&p1=httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/README&r1=122852&p2=httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/README&r2=122853
==============================================================================
--- httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/README	(original)
+++ httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/README	Mon Dec 20 07:02:55 2004
@@ -18,7 +18,7 @@
 
   a. Apache-Test config test suite
 
-  % t/TEST -config sample/apache_test_config.pm
+  % t/TEST -config sample/testitself_conf_apache_test_core.pl
 
   this runs against the test suite under:
 
@@ -26,8 +26,8 @@
 
   it's the same as calling:
 
-  % t/TEST -base ~/apache.org/Apache-Test/Apache-TestItSelf/Apache-TestMe/t \
-  -config sample/apache_test_config.pm
+  % t/TEST -base ~/apache.org/Apache-Test/Apache-TestItSelf/Apache-TestMe \
+  -config sample/testitself_conf_apache_test_core.pl
 
 
 
@@ -38,7 +38,7 @@
   Apache-Test test suite
 
   % t/TEST -base ~/apache.org/Apache-Test \
-  -config sample/apache_test_config.pm
+  -config sample/testitself_conf_apache_test_core.pl
 
 
 
@@ -49,7 +49,7 @@
   modperl-2.0 test suite
 
   % t/TEST -base ~/apache.org/mp2-svn \
-  -config sample/modperl2_testitself_config.pm t/httpd_arg.t t/interactive.t
+  -config sample/testitself_conf_mp2_core.pl t/httpd_arg.t t/interactive.t
 
 
 
@@ -62,7 +62,7 @@
 
 
   % t/TEST -base ~/work/modules/Apache-VMonitor-2.0 \
-  -config sample/apache2_modules_testitself_config.pm
+  -config sample/testitself_conf_mp2_modules.pl
 
 
 -----------------------------

Deleted: /httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache2_modules_testitself_config.pm
Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache2_modules_testitself_config.pm?view=auto&rev=122852
==============================================================================

Deleted: /httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache_test_config.pm
Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache_test_config.pm?view=auto&rev=122852
==============================================================================

Deleted: /httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm
Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm?view=auto&rev=122852
==============================================================================

Copied: httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_apache_test_core.pl (from r122851, httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache_test_config.pm)
Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_apache_test_core.pl?view=diff&rev=122853&p1=httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache_test_config.pm&r1=122851&p2=httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_apache_test_core.pl&r2=122853
==============================================================================
--- httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache_test_config.pm	(original)
+++ httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_apache_test_core.pl	Mon Dec 20 07:02:55 2004
@@ -1,6 +1,7 @@
 # This is a config file for testing Apache-Test
 
 %Apache::TestItSelf::Config = (
+    repos_type    => 'apache_test_core',
     perl_exec     => '/home/stas/perl/5.8.5-ithread/bin/perl5.8.5',
     mp_gen        => '2.0',
     httpd_gen     => '2.0',

Copied: httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_mp2_core.pl (from r122852, httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm)
Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_mp2_core.pl?view=diff&rev=122853&p1=httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/modperl2_testitself_config.pm&r1=122852&p2=httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_mp2_core.pl&r2=122853
==============================================================================

Copied: httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_mp2_modules.pl (from r122851, httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache2_modules_testitself_config.pm)
Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_mp2_modules.pl?view=diff&rev=122853&p1=httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/apache2_modules_testitself_config.pm&r1=122851&p2=httpd/test/trunk/perl-framework/Apache-Test/Apache-TestItSelf/sample/testitself_conf_mp2_modules.pl&r2=122853
==============================================================================