Move the ext/IO tests to a more standard location so that
Jarkko Hietaniemi [Mon, 28 Jul 2003 14:31:17 +0000 (14:31 +0000)]
the *.t do not get copied to the build tree (lib/IO/).

p4raw-id: //depot/perl@20268

17 files changed:
MANIFEST
ext/IO/t/IO.t [moved from ext/IO/lib/IO/t/IO.t with 100% similarity]
ext/IO/t/io_const.t [moved from ext/IO/lib/IO/t/io_const.t with 100% similarity]
ext/IO/t/io_dir.t [moved from ext/IO/lib/IO/t/io_dir.t with 100% similarity]
ext/IO/t/io_dup.t [moved from ext/IO/lib/IO/t/io_dup.t with 100% similarity]
ext/IO/t/io_linenum.t [moved from ext/IO/lib/IO/t/io_linenum.t with 100% similarity]
ext/IO/t/io_multihomed.t [moved from ext/IO/lib/IO/t/io_multihomed.t with 100% similarity]
ext/IO/t/io_pipe.t [moved from ext/IO/lib/IO/t/io_pipe.t with 100% similarity]
ext/IO/t/io_poll.t [moved from ext/IO/lib/IO/t/io_poll.t with 100% similarity]
ext/IO/t/io_sel.t [moved from ext/IO/lib/IO/t/io_sel.t with 100% similarity]
ext/IO/t/io_sock.t [moved from ext/IO/lib/IO/t/io_sock.t with 100% similarity]
ext/IO/t/io_taint.t [moved from ext/IO/lib/IO/t/io_taint.t with 100% similarity]
ext/IO/t/io_tell.t [moved from ext/IO/lib/IO/t/io_tell.t with 100% similarity]
ext/IO/t/io_udp.t [moved from ext/IO/lib/IO/t/io_udp.t with 100% similarity]
ext/IO/t/io_unix.t [moved from ext/IO/lib/IO/t/io_unix.t with 100% similarity]
ext/IO/t/io_utf8.t [moved from ext/IO/lib/IO/t/io_utf8.t with 100% similarity]
ext/IO/t/io_xs.t [moved from ext/IO/lib/IO/t/io_xs.t with 100% similarity]

index da8c032..a15f378 100644 (file)
--- 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
similarity index 100%
rename from ext/IO/lib/IO/t/IO.t
rename to ext/IO/t/IO.t
similarity index 100%
rename from ext/IO/lib/IO/t/io_dir.t
rename to ext/IO/t/io_dir.t
similarity index 100%
rename from ext/IO/lib/IO/t/io_dup.t
rename to ext/IO/t/io_dup.t
similarity index 100%
rename from ext/IO/lib/IO/t/io_pipe.t
rename to ext/IO/t/io_pipe.t
similarity index 100%
rename from ext/IO/lib/IO/t/io_poll.t
rename to ext/IO/t/io_poll.t
similarity index 100%
rename from ext/IO/lib/IO/t/io_sel.t
rename to ext/IO/t/io_sel.t
similarity index 100%
rename from ext/IO/lib/IO/t/io_sock.t
rename to ext/IO/t/io_sock.t
similarity index 100%
rename from ext/IO/lib/IO/t/io_tell.t
rename to ext/IO/t/io_tell.t
similarity index 100%
rename from ext/IO/lib/IO/t/io_udp.t
rename to ext/IO/t/io_udp.t
similarity index 100%
rename from ext/IO/lib/IO/t/io_unix.t
rename to ext/IO/t/io_unix.t
similarity index 100%
rename from ext/IO/lib/IO/t/io_utf8.t
rename to ext/IO/t/io_utf8.t
similarity index 100%
rename from ext/IO/lib/IO/t/io_xs.t
rename to ext/IO/t/io_xs.t