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/03 21:05:35 UTC

svn commit: r109725 - /httpd/test/trunk/perl-framework/Apache-Test/Changes /httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestTrace.pm

Author: stas
Date: Fri Dec  3 12:05:34 2004
New Revision: 109725

URL: http://svn.apache.org/viewcvs?view=rev&rev=109725
Log:
Apache::TestTrace: don't export by default the 'todo' utility's symbol
since it collides with Test::More

Modified:
   httpd/test/trunk/perl-framework/Apache-Test/Changes
   httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestTrace.pm

Modified: httpd/test/trunk/perl-framework/Apache-Test/Changes
Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/Changes?view=diff&rev=109725&p1=httpd/test/trunk/perl-framework/Apache-Test/Changes&r1=109724&p2=httpd/test/trunk/perl-framework/Apache-Test/Changes&r2=109725
==============================================================================
--- httpd/test/trunk/perl-framework/Apache-Test/Changes	(original)
+++ httpd/test/trunk/perl-framework/Apache-Test/Changes	Fri Dec  3 12:05:34 2004
@@ -8,6 +8,9 @@
 
 =item 1.17-dev
 
+Apache::TestTrace: don't export by default the 'todo' utility's symbol
+since it collides with Test::More [Stas]
+
 Tweak the handling of mp2 source build case in
 Apache::TestConfig::httpd_config(), apparently mp2 source build
 doesn't always know where httpd/apxs are, so we need to give a better

Modified: httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestTrace.pm
Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestTrace.pm?view=diff&rev=109725&p1=httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestTrace.pm&r1=109724&p2=httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestTrace.pm&r2=109725
==============================================================================
--- httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestTrace.pm	(original)
+++ httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestTrace.pm	Fri Dec  3 12:05:34 2004
@@ -27,7 +27,7 @@
 }
 
 @ISA     = qw(Exporter);
-@EXPORT  = (@Subs);
+@EXPORT  = (@Levels);
 $VERSION = '0.01';
 use subs (@Subs);