You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by st...@apache.org on 2005/03/02 05:03:17 UTC

svn commit: r155869 - in perl/modperl/trunk/t: conf/extra.last.conf.in lib/ModPerl/TestFilterDebug.pm lib/ModPerl/TestMemoryLeak.pm lib/ModPerl/TestTiePerlSection.pm lib/TestCommon/FilterDebug.pm lib/TestCommon/MemoryLeak.pm lib/TestCommon/TiePerlSection.pm

Author: stas
Date: Tue Mar  1 20:03:15 2005
New Revision: 155869

URL: http://svn.apache.org/viewcvs?view=rev&rev=155869
Log:
get rid of t/lib/ModPerl and move all those internal helper test libs into 
t/lib/TestCommon to be consistent

Added:
    perl/modperl/trunk/t/lib/TestCommon/FilterDebug.pm
      - copied unchanged from r155373, perl/modperl/trunk/t/lib/ModPerl/TestFilterDebug.pm
    perl/modperl/trunk/t/lib/TestCommon/MemoryLeak.pm
      - copied, changed from r155373, perl/modperl/trunk/t/lib/ModPerl/TestMemoryLeak.pm
    perl/modperl/trunk/t/lib/TestCommon/TiePerlSection.pm
      - copied, changed from r155373, perl/modperl/trunk/t/lib/ModPerl/TestTiePerlSection.pm
Removed:
    perl/modperl/trunk/t/lib/ModPerl/TestFilterDebug.pm
    perl/modperl/trunk/t/lib/ModPerl/TestMemoryLeak.pm
    perl/modperl/trunk/t/lib/ModPerl/TestTiePerlSection.pm
Modified:
    perl/modperl/trunk/t/conf/extra.last.conf.in

Modified: perl/modperl/trunk/t/conf/extra.last.conf.in
URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/t/conf/extra.last.conf.in?view=diff&r1=155868&r2=155869
==============================================================================
--- perl/modperl/trunk/t/conf/extra.last.conf.in (original)
+++ perl/modperl/trunk/t/conf/extra.last.conf.in Tue Mar  1 20:03:15 2005
@@ -15,8 +15,8 @@
 
 <Perl >
 #Test tied %Location
-use ModPerl::TestTiePerlSection ();
-tie %Location, 'ModPerl::TestTiePerlSection';
+use TestCommon::TiePerlSection ();
+tie %Location, 'TestCommon::TiePerlSection';
 $Location{'/tied'} = 'test_tied';
 
 $Apache::PerlSections::Save = 1;

Copied: perl/modperl/trunk/t/lib/TestCommon/MemoryLeak.pm (from r155373, perl/modperl/trunk/t/lib/ModPerl/TestMemoryLeak.pm)
URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/t/lib/TestCommon/MemoryLeak.pm?view=diff&rev=155869&p1=perl/modperl/trunk/t/lib/ModPerl/TestMemoryLeak.pm&r1=155373&p2=perl/modperl/trunk/t/lib/TestCommon/MemoryLeak.pm&r2=155869
==============================================================================
--- perl/modperl/trunk/t/lib/ModPerl/TestMemoryLeak.pm (original)
+++ perl/modperl/trunk/t/lib/TestCommon/MemoryLeak.pm Tue Mar  1 20:03:15 2005
@@ -1,4 +1,4 @@
-package ModPerl::TestMemoryLeak;
+package TestCommon::MemoryLeak;
 
 # handy functions to measure memory leaks. since it measures the total
 # memory size of the process and not just perl leaks, you get your
@@ -7,11 +7,11 @@
 # For example to test TestAPR::Pool::handler for leaks, add to its
 # top:
 #
-#  ModPerl::TestMemoryLeak::start();
+#  TestCommon::MemoryLeak::start();
 #
 # and just before returning from the handler add:
 #
-#  ModPerl::TestMemoryLeak::end();
+#  TestCommon::MemoryLeak::end();
 #
 # now start the server with only worker server
 #

Copied: perl/modperl/trunk/t/lib/TestCommon/TiePerlSection.pm (from r155373, perl/modperl/trunk/t/lib/ModPerl/TestTiePerlSection.pm)
URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/t/lib/TestCommon/TiePerlSection.pm?view=diff&rev=155869&p1=perl/modperl/trunk/t/lib/ModPerl/TestTiePerlSection.pm&r1=155373&p2=perl/modperl/trunk/t/lib/TestCommon/TiePerlSection.pm&r2=155869
==============================================================================
--- perl/modperl/trunk/t/lib/ModPerl/TestTiePerlSection.pm (original)
+++ perl/modperl/trunk/t/lib/TestCommon/TiePerlSection.pm Tue Mar  1 20:03:15 2005
@@ -1,4 +1,4 @@
-package ModPerl::TestTiePerlSection;
+package TestCommon::TiePerlSection;
 
 use strict;
 use warnings FATAL => 'all';