pkgsrc/lang/perl5/patches/patch-ta
adam 1f337496f7 Changes 5.14.1:
* Several modules were updated to fix minor bugs.
* Tests were fixed.
* Documentation was improved.

Changes 5.14.0:
* Unicode version 6.0 is now supported.
* Regular expressions can now be reset to the default modifiers.
* Four new regular expression modifiers, "/d", "/l" , "/u", and "/a", were
  introduced.
* The substitution operators now support the modifier "/r" to work
  non-destructively, leaving the original unmodified.
* Larger octals can now be specified.
* Array and hash operators can now experimentally operate directly on hard
  references.
* printf-like functions now understand post-1980 size modifiers.
* Exception handling was made more reliable and consistent.
* Other enhancements and many bug fixes were made

PkgSrc:
* Fixed configuring on Mac OS X 10.7.
2011-08-05 18:06:14 +00:00

25 lines
752 B
Text

$NetBSD: patch-ta,v 1.4 2011/08/05 18:06:15 adam Exp $
On NetBSD, filesystems may be mounted with the noatime option.
--- t/io/fs.t.orig 2009-12-06 21:03:51.000000000 +0000
+++ t/io/fs.t 2009-12-06 21:04:34.000000000 +0000
@@ -275,15 +275,15 @@
is( $atime, 500000001, 'atime' );
is( $mtime, 500000000 + $delta, 'mtime' );
}
- elsif ($^O eq 'beos' || $^O eq 'haiku') {
+ elsif ($^O eq 'beos' || $^O eq 'haiku' || $^O eq 'netbsd') {
SKIP: {
skip "atime not updated", 1;
}
is($mtime, 500000001, 'mtime');
}
else {
- fail("atime");
- fail("mtime");
+ fail("atime: expected 500000000, got ${atime}");
+ fail("mtime: expected ".(500000000+$delta).", got ${mtime}");
}
}
}