From: Jarkko Hietaniemi Date: Mon, 28 Jul 2003 14:31:17 +0000 (+0000) Subject: Move the ext/IO tests to a more standard location so that X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7ef1fc816de9ba164ee8c1da342f0a6b52845247;p=p5sagit%2Fp5-mst-13.2.git Move the ext/IO tests to a more standard location so that the *.t do not get copied to the build tree (lib/IO/). p4raw-id: //depot/perl@20268 --- diff --git a/MANIFEST b/MANIFEST index da8c032..a15f378 100644 --- a/MANIFEST +++ b/MANIFEST @@ -456,26 +456,26 @@ ext/IO/lib/IO/Select.pm IO system select() interface ext/IO/lib/IO/Socket.pm IO socket handle package ext/IO/lib/IO/Socket/INET.pm IO INET specific socket methods ext/IO/lib/IO/Socket/UNIX.pm IO UNIX specific socket methods -ext/IO/lib/IO/t/IO.t See if IO works -ext/IO/lib/IO/t/io_const.t See if constants from IO work -ext/IO/lib/IO/t/io_dir.t See if directory-related methods from IO work -ext/IO/lib/IO/t/io_dup.t See if dup()-related methods from IO work -ext/IO/lib/IO/t/io_linenum.t See if I/O line numbers are tracked correctly -ext/IO/lib/IO/t/io_multihomed.t See if INET sockets work with multi-homed hosts -ext/IO/lib/IO/t/io_pipe.t See if pipe()-related methods from IO work -ext/IO/lib/IO/t/io_poll.t See if poll()-related methods from IO work -ext/IO/lib/IO/t/io_sel.t See if select()-related methods from IO work -ext/IO/lib/IO/t/io_sock.t See if INET socket-related methods from IO work -ext/IO/lib/IO/t/io_taint.t See if the untaint method from IO works -ext/IO/lib/IO/t/io_tell.t See if seek()/tell()-related methods from IO work -ext/IO/lib/IO/t/io_udp.t See if UDP socket-related methods from IO work -ext/IO/lib/IO/t/io_unix.t See if UNIX socket-related methods from IO work -ext/IO/lib/IO/t/io_utf8.t See if perlio opens work -ext/IO/lib/IO/t/io_xs.t See if XSUB methods from IO work ext/IO/Makefile.PL IO extension makefile writer ext/IO/poll.c IO poll() emulation using select() ext/IO/poll.h IO poll() emulation using select() ext/IO/README IO extension maintenance notice +ext/IO/t/IO.t See if IO works +ext/IO/t/io_const.t See if constants from IO work +ext/IO/t/io_dir.t See if directory-related methods from IO work +ext/IO/t/io_dup.t See if dup()-related methods from IO work +ext/IO/t/io_linenum.t See if I/O line numbers are tracked correctly +ext/IO/t/io_multihomed.t See if INET sockets work with multi-homed hosts +ext/IO/t/io_pipe.t See if pipe()-related methods from IO work +ext/IO/t/io_poll.t See if poll()-related methods from IO work +ext/IO/t/io_sel.t See if select()-related methods from IO work +ext/IO/t/io_sock.t See if INET socket-related methods from IO work +ext/IO/t/io_taint.t See if the untaint method from IO works +ext/IO/t/io_tell.t See if seek()/tell()-related methods from IO work +ext/IO/t/io_udp.t See if UDP socket-related methods from IO work +ext/IO/t/io_unix.t See if UNIX socket-related methods from IO work +ext/IO/t/io_utf8.t See if perlio opens work +ext/IO/t/io_xs.t See if XSUB methods from IO work ext/IPC/SysV/ChangeLog IPC::SysV extension Perl module ext/IPC/SysV/hints/cygwin.pl Hint for IPC::SysV for named architecture ext/IPC/SysV/hints/next_3.pl Hint for IPC::SysV for named architecture diff --git a/ext/IO/lib/IO/t/IO.t b/ext/IO/t/IO.t similarity index 100% rename from ext/IO/lib/IO/t/IO.t rename to ext/IO/t/IO.t diff --git a/ext/IO/lib/IO/t/io_const.t b/ext/IO/t/io_const.t similarity index 100% rename from ext/IO/lib/IO/t/io_const.t rename to ext/IO/t/io_const.t diff --git a/ext/IO/lib/IO/t/io_dir.t b/ext/IO/t/io_dir.t similarity index 100% rename from ext/IO/lib/IO/t/io_dir.t rename to ext/IO/t/io_dir.t diff --git a/ext/IO/lib/IO/t/io_dup.t b/ext/IO/t/io_dup.t similarity index 100% rename from ext/IO/lib/IO/t/io_dup.t rename to ext/IO/t/io_dup.t diff --git a/ext/IO/lib/IO/t/io_linenum.t b/ext/IO/t/io_linenum.t similarity index 100% rename from ext/IO/lib/IO/t/io_linenum.t rename to ext/IO/t/io_linenum.t diff --git a/ext/IO/lib/IO/t/io_multihomed.t b/ext/IO/t/io_multihomed.t similarity index 100% rename from ext/IO/lib/IO/t/io_multihomed.t rename to ext/IO/t/io_multihomed.t diff --git a/ext/IO/lib/IO/t/io_pipe.t b/ext/IO/t/io_pipe.t similarity index 100% rename from ext/IO/lib/IO/t/io_pipe.t rename to ext/IO/t/io_pipe.t diff --git a/ext/IO/lib/IO/t/io_poll.t b/ext/IO/t/io_poll.t similarity index 100% rename from ext/IO/lib/IO/t/io_poll.t rename to ext/IO/t/io_poll.t diff --git a/ext/IO/lib/IO/t/io_sel.t b/ext/IO/t/io_sel.t similarity index 100% rename from ext/IO/lib/IO/t/io_sel.t rename to ext/IO/t/io_sel.t diff --git a/ext/IO/lib/IO/t/io_sock.t b/ext/IO/t/io_sock.t similarity index 100% rename from ext/IO/lib/IO/t/io_sock.t rename to ext/IO/t/io_sock.t diff --git a/ext/IO/lib/IO/t/io_taint.t b/ext/IO/t/io_taint.t similarity index 100% rename from ext/IO/lib/IO/t/io_taint.t rename to ext/IO/t/io_taint.t diff --git a/ext/IO/lib/IO/t/io_tell.t b/ext/IO/t/io_tell.t similarity index 100% rename from ext/IO/lib/IO/t/io_tell.t rename to ext/IO/t/io_tell.t diff --git a/ext/IO/lib/IO/t/io_udp.t b/ext/IO/t/io_udp.t similarity index 100% rename from ext/IO/lib/IO/t/io_udp.t rename to ext/IO/t/io_udp.t diff --git a/ext/IO/lib/IO/t/io_unix.t b/ext/IO/t/io_unix.t similarity index 100% rename from ext/IO/lib/IO/t/io_unix.t rename to ext/IO/t/io_unix.t diff --git a/ext/IO/lib/IO/t/io_utf8.t b/ext/IO/t/io_utf8.t similarity index 100% rename from ext/IO/lib/IO/t/io_utf8.t rename to ext/IO/t/io_utf8.t diff --git a/ext/IO/lib/IO/t/io_xs.t b/ext/IO/t/io_xs.t similarity index 100% rename from ext/IO/lib/IO/t/io_xs.t rename to ext/IO/t/io_xs.t