mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 05:10:29 -04:00
A few important changes: - '.' is no longer in @INC. - "do" now gives a deprecation warning when it fails to load a file which it would have loaded had "." been in @INC. - In regular expression patterns, a literal left brace "{" should be escaped. Changes: https://metacpan.org/pod/release/XSAWYERX/perl-5.26.0/pod/perldelta.pod Sponsored by: Absolight
20 lines
788 B
Raku
20 lines
788 B
Raku
--- cpan/ExtUtils-Install/t/Install.t.orig 2015-10-14 14:27:14 UTC
|
|
+++ cpan/ExtUtils-Install/t/Install.t
|
|
@@ -240,7 +240,7 @@ SKIP: {
|
|
},
|
|
]);
|
|
|
|
- ok( !writeable("$bigdir/DummyHard.pm"), 'DummyHard.pm not writeable' );
|
|
+ ok( writeable("$bigdir/DummyHard.pm"), 'DummyHard.pm writeable' );
|
|
|
|
use File::Compare;
|
|
ok(compare("$bigdir/Dummy.pm", "$bigdir/DummyHard.pm"),
|
|
@@ -264,7 +264,7 @@ SKIP: {
|
|
},
|
|
]);
|
|
|
|
- ok( !writeable("$bigdir/DummyOrig.pm"), 'DummyOrig.pm not writeable' );
|
|
+ ok( writeable("$bigdir/DummyOrig.pm"), 'DummyOrig.pm writeable' );
|
|
ok( !-l "$bigdir/Dummy.pm", 'Dummy.pm not a link' );
|
|
ok(compare("$bigdir/Dummy.pm", "$bigdir/DummyOrig.pm"),
|
|
"orig file should be different");
|