aboutsummaryrefslogtreecommitdiffstats
path: root/lang/perl5.20
diff options
context:
space:
mode:
authormat <mat@FreeBSD.org>2015-10-19 22:17:05 +0800
committermat <mat@FreeBSD.org>2015-10-19 22:17:05 +0800
commite18413661fadcae47bb20ec0de548623410227ad (patch)
treebf2ea1a6982dd326c744e7d374b62fc255713857 /lang/perl5.20
parent7a08a1e1127e8160230047033d2901bcaff20577 (diff)
downloadfreebsd-ports-graphics-e18413661fadcae47bb20ec0de548623410227ad.tar.gz
freebsd-ports-graphics-e18413661fadcae47bb20ec0de548623410227ad.tar.zst
freebsd-ports-graphics-e18413661fadcae47bb20ec0de548623410227ad.zip
Add a few patches to lang/perl5.* to make tests pass.
Sponsored by: Absolight
Diffstat (limited to 'lang/perl5.20')
-rw-r--r--lang/perl5.20/files/patch-dist_ExtUtils-Install_t_Install.t20
1 files changed, 20 insertions, 0 deletions
diff --git a/lang/perl5.20/files/patch-dist_ExtUtils-Install_t_Install.t b/lang/perl5.20/files/patch-dist_ExtUtils-Install_t_Install.t
new file mode 100644
index 00000000000..1f8026c179a
--- /dev/null
+++ b/lang/perl5.20/files/patch-dist_ExtUtils-Install_t_Install.t
@@ -0,0 +1,20 @@
+--- dist/ExtUtils-Install/t/Install.t.orig 2014-12-27 11:49:23 UTC
++++ dist/ExtUtils-Install/t/Install.t
+@@ -237,7 +237,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"),
+@@ -261,7 +261,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");