From: Nicholas Clark Date: Mon, 9 Feb 2009 17:56:53 +0000 (+0000) Subject: Move the 4 tests of core PerlIO functionality to t/io. PerlIO::Layer::find is X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a47facf7a19db83dbf78974cdd7962d9ffc76952;p=p5sagit%2Fp5-mst-13.2.git Move the 4 tests of core PerlIO functionality to t/io. PerlIO::Layer::find is implemented in perlio.c --- diff --git a/MANIFEST b/MANIFEST index ba0dbc0..efbe6e9 100644 --- a/MANIFEST +++ b/MANIFEST @@ -974,10 +974,6 @@ ext/PerlIO/scalar/scalar.pm PerlIO layer for scalars ext/PerlIO/scalar/scalar.xs PerlIO layer for scalars ext/PerlIO/scalar/t/scalar.t See if PerlIO::scalar works ext/PerlIO/scalar/t/scalar_ungetc.t Tests for PerlIO layer for scalars -ext/PerlIO/t/fail.t See if bad layers fail -ext/PerlIO/t/ioleaks.t See if PerlIO layers are leaking -ext/PerlIO/t/open.t See if PerlIO certain special opens work -ext/PerlIO/t/PerlIO.t See if PerlIO works ext/PerlIO/via/hints/aix.pl Hint for PerlIO::via for named architecture ext/PerlIO/via/Makefile.PL PerlIO layer for layers in perl ext/PerlIO/via/t/via.t See if PerlIO::via works @@ -3720,6 +3716,10 @@ t/io/layers.t See if PerlIO layers work t/io/nargv.t See if nested ARGV stuff works t/io/openpid.t See if open works for subprocesses t/io/open.t See if open works +t/io/perlio.t See if PerlIO works +t/io/perlio_fail.t See if bad layers fail +t/io/perlio_leaks.t See if PerlIO layers are leaking +t/io/perlio_open.t See if PerlIO certain special opens work t/io/pipe.t See if secure pipes work t/io/print.t See if print commands work t/io/pvbm.t See if PVBMs break IO commands diff --git a/ext/PerlIO/t/PerlIO.t b/t/io/perlio.t similarity index 100% rename from ext/PerlIO/t/PerlIO.t rename to t/io/perlio.t diff --git a/ext/PerlIO/t/fail.t b/t/io/perlio_fail.t similarity index 100% rename from ext/PerlIO/t/fail.t rename to t/io/perlio_fail.t diff --git a/ext/PerlIO/t/ioleaks.t b/t/io/perlio_leaks.t similarity index 100% rename from ext/PerlIO/t/ioleaks.t rename to t/io/perlio_leaks.t diff --git a/ext/PerlIO/t/open.t b/t/io/perlio_open.t similarity index 100% rename from ext/PerlIO/t/open.t rename to t/io/perlio_open.t