Change 34231 by [EMAIL PROTECTED] on 2008/08/26 14:12:49
Khaaaaan! Change 34230 wasn't right. The tests all passed because I
had a(nother) copy of Dev::Null in the "right" place. So make that
right place official.
Affected files ...
... //depot/perl/MANIFEST#1719 edit
... //depot/perl/Porting/Maintainers.pl#117 edit
... //depot/perl/lib/Test/Simple/t/lib/Dev/Null.pm#2 delete
... //depot/perl/t/lib/Dev/Null.pm#4 branch
Differences ...
==== //depot/perl/MANIFEST#1719 (text) ====
Index: perl/MANIFEST
--- perl/MANIFEST#1718~34230~ 2008-08-26 06:49:24.000000000 -0700
+++ perl/MANIFEST 2008-08-26 07:12:49.000000000 -0700
@@ -1183,7 +1183,6 @@
ext/Test/Harness/t/harness.t Test::Harness test
ext/Test/Harness/t/iterators.t Test::Harness test
ext/Test/Harness/t/lib/App/Prove/Plugin/Dummy.pm Module for testing
Test::Harness
-ext/Test/Harness/t/lib/Dev/Null.pm Module for testing
Test::Harness
ext/Test/Harness/t/lib/EmptyParser.pm Module for testing
Test::Harness
ext/Test/Harness/t/lib/IO/c55Capture.pm Module for
testing Test::Harness
ext/Test/Harness/t/lib/MyCustom.pm Module for testing
Test::Harness
@@ -2857,7 +2856,6 @@
lib/Test/Simple/t/is_deeply_fail.t Test::More test, is_deeply()
lib/Test/Simple/t/is_deeply_with_threads.t Test::More test
lib/Test/Simple/t/is_fh.t Test::Builder test, _is_fh()
-lib/Test/Simple/t/lib/Dev/Null.pm Test::More test module
lib/Test/Simple/t/lib/Dummy.pm Test::More test module
lib/Test/Simple/t/lib/MyOverload.pm Test::More test module
lib/Test/Simple/t/lib/NoExporter.pm Test::Simple test module
@@ -3679,6 +3677,7 @@
t/lib/contains_pod.xr Pod-Parser test file
t/lib/cygwin.t Builtin cygwin function tests
t/lib/Devel/switchd.pm Module for t/run/switchd.t
+t/lib/Dev/Null.pm Test::More test module
t/lib/dprof/test1_t Perl code profiler tests
t/lib/dprof/test1_v Perl code profiler tests
t/lib/dprof/test2_t Perl code profiler tests
==== //depot/perl/Porting/Maintainers.pl#117 (text) ====
Index: perl/Porting/Maintainers.pl
--- perl/Porting/Maintainers.pl#116~34229~ 2008-08-26 06:29:49.000000000
-0700
+++ perl/Porting/Maintainers.pl 2008-08-26 07:12:49.000000000 -0700
@@ -881,7 +881,7 @@
'FILES' => q[lib/Test/Simple.pm lib/Test/Simple
lib/Test/Builder.pm lib/Test/Builder
lib/Test/More.pm
- t/lib/Test/Simple],
+ t/lib/Test/Simple t/lib/Dev/Null.pm],
'CPAN' => 1,
},
==== //depot/perl/t/lib/Dev/Null.pm#4 (text) ====
Index: perl/t/lib/Dev/Null.pm
--- /dev/null 2008-08-26 01:15:08.532840418 -0700
+++ perl/t/lib/Dev/Null.pm 2008-08-26 07:12:49.000000000 -0700
@@ -0,0 +1,6 @@
+package Dev::Null;
+
+sub TIEHANDLE { bless {} }
+sub PRINT { 1 }
+
+1;
End of Patch.