diff options
-rw-r--r-- | README.ce | 2 | ||||
-rw-r--r-- | README.haiku | 6 | ||||
-rw-r--r-- | README.os2 | 2 | ||||
-rw-r--r-- | README.solaris | 2 | ||||
-rw-r--r-- | README.win32 | 2 | ||||
-rw-r--r-- | pod/perlhack.pod | 2 | ||||
-rw-r--r-- | pod/perlipc.pod | 6 | ||||
-rw-r--r-- | pod/perlmroapi.pod | 4 | ||||
-rw-r--r-- | pod/perlport.pod | 2 | ||||
-rw-r--r-- | sv.c | 2 |
10 files changed, 15 insertions, 15 deletions
@@ -57,7 +57,7 @@ F<Config.pm> for further compilations. =item * -During extensions build phase, a script F<./win32/buldext.pl> is invoked, +During extensions build phase, a script F<./win32/buildext.pl> is invoked, which in turn steps in F<./ext> subdirectories and performs a build of each extension in turn. diff --git a/README.haiku b/README.haiku index b5e004625f..238cc6c087 100644 --- a/README.haiku +++ b/README.haiku @@ -38,18 +38,18 @@ Perl cannot be compiled with threading support ATM. =item * -The F<ext/Socket/t/socketpair.t> test fails. More precisely: the subtests +The F<cpan/Socket/t/socketpair.t> test fails. More precisely: the subtests using datagram sockets fail. Unix datagram sockets aren't implemented in Haiku yet. =item * -A subtest of the F<ext/Sys/Syslog/t/syslog.t> test fails. This is due to Haiku +A subtest of the F<cpan/Sys-Syslog/t/syslog.t> test fails. This is due to Haiku not implementing F</dev/log> support yet. =item * -The tests F<lib/Net/Ping/t/450_service.t> and F<lib/Net/Ping/t/510_ping_udp.t> +The tests F<dist/Net-Ping/t/450_service.t> and F<dist/Net-Ping/t/510_ping_udp.t> fail. This is due to bugs in Haiku's network stack implementation. =back diff --git a/README.os2 b/README.os2 index eceb34daae..05cc088217 100644 --- a/README.os2 +++ b/README.os2 @@ -870,7 +870,7 @@ make sure that no copies or perl are currently running. Later steps of the build may fail since an older version of F<perl.dll> loaded into memory may be found. Running C<make test> becomes meaningless, since the test are checking a previous build of perl (this situation is detected -and reported by F<lib/os2_base.t> test). Do not forget to unset +and reported by F<os2/os2_base.t> test). Do not forget to unset C<PERL_EMXLOAD_SEC> in environment. Also make sure that you have F</tmp> directory on the current drive, diff --git a/README.solaris b/README.solaris index 245ded8c5e..4ee45590a9 100644 --- a/README.solaris +++ b/README.solaris @@ -637,7 +637,7 @@ also seems to have become broken in in SunOS 4.x. Therefore the default is to build Perl statically. Running the test suite in SunOS 4.1 is a bit tricky since the -F<lib/Tie/File/t/09_gen_rs> test hangs (subtest #51, FWIW) for some +F<dist/Tie-File/t/09_gen_rs.t> test hangs (subtest #51, FWIW) for some unknown reason. Just stop the test and kill that particular Perl process. diff --git a/README.win32 b/README.win32 index 672601988d..a455f3e675 100644 --- a/README.win32 +++ b/README.win32 @@ -420,7 +420,7 @@ There should be no test failures. If you build with Visual C++ 2013 then three tests currently may fail with Daylight Saving Time related problems: F<t/io/fs.t>, -F<cpan/HTTP-Tiny/t/110_mirror.t> and F<lib/File.Copy.t>. The failures are +F<cpan/HTTP-Tiny/t/110_mirror.t> and F<lib/File/Copy.t>. The failures are caused by bugs in the CRT in VC++ 2013 which will be fixed in future releases of VC++, as explained by Microsoft here: L<https://connect.microsoft.com/VisualStudio/feedback/details/811534/utime-sometimes-fails-to-set-the-correct-file-times-in-visual-c-2013>. In the meantime, diff --git a/pod/perlhack.pod b/pod/perlhack.pod index 70f4265dbc..4e79063374 100644 --- a/pod/perlhack.pod +++ b/pod/perlhack.pod @@ -897,7 +897,7 @@ non-conflicting test scripts itself, and there is no standard interface to C<make> utilities to interact with their job schedulers. Note that currently some test scripts may fail when run in parallel -(most notably F<ext/IO/t/io_dir.t>). If necessary, run just the +(most notably F<dist/IO/t/io_dir.t>). If necessary, run just the failing scripts again sequentially and see if the failures go away. =head2 Running tests by hand diff --git a/pod/perlipc.pod b/pod/perlipc.pod index 33362c19ef..8effcf09fc 100644 --- a/pod/perlipc.pod +++ b/pod/perlipc.pod @@ -168,9 +168,9 @@ is liable to generate zombies. If this matters to you, you'll need to do your own fork() and exec(), and kill the errant child process. For more complex signal handling, you might see the standard POSIX -module. Lamentably, this is almost entirely undocumented, but -the F<t/lib/posix.t> file from the Perl source distribution has some -examples in it. +module. Lamentably, this is almost entirely undocumented, but the +F<ext/POSIX/t/sigaction.t> file from the Perl source distribution has +some examples in it. =head2 Handling the SIGHUP Signal in Daemons diff --git a/pod/perlmroapi.pod b/pod/perlmroapi.pod index 54da7dded2..4d19cdab5f 100644 --- a/pod/perlmroapi.pod +++ b/pod/perlmroapi.pod @@ -90,8 +90,8 @@ value that you pass it. =head1 Examples For examples of MRO implementations, see C<S_mro_get_linear_isa_c3()> -and the C<BOOT:> section of F<mro/mro.xs>, and C<S_mro_get_linear_isa_dfs()> -in F<mro.c> +and the C<BOOT:> section of F<ext/mro/mro.xs>, and +C<S_mro_get_linear_isa_dfs()> in F<mro_core.c> =head1 AUTHORS diff --git a/pod/perlport.pod b/pod/perlport.pod index 031b2b10a9..d4c970ad58 100644 --- a/pod/perlport.pod +++ b/pod/perlport.pod @@ -2048,7 +2048,7 @@ Some tests are known to fail: =item * -F<ext/XS-APItes/t/call_checker.t> - see +F<ext/XS-APItest/t/call_checker.t> - see L<https://rt.perl.org/Ticket/Display.html?id=78502> =item * @@ -15333,7 +15333,7 @@ will be converted into Unicode (and UTF-8). If C<sv> already is UTF-8 (or if it is not C<POK>), or if C<encoding> is not a reference, nothing is done to C<sv>. If C<encoding> is not an C<Encode::XS> Encoding object, bad things will happen. -(See F<lib/encoding.pm> and L<Encode>.) +(See F<cpan/Encode/encoding.pm> and L<Encode>.) The PV of C<sv> is returned. |