summaryrefslogtreecommitdiff
path: root/t/io/fs.t
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.berkeley.edu>2006-12-13 10:32:22 -0800
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-12-18 11:47:56 +0000
commit295d5f02f7120b75c639212780c96fcd67ffb3d6 (patch)
treea44f8e16930764c93d17f0f7918f6353d84862e0 /t/io/fs.t
parent2563cec55ae473562ff3ccda41cd10289db419be (diff)
downloadperl-295d5f02f7120b75c639212780c96fcd67ffb3d6.tar.gz
Fixes for the test suite on OS/2
Message-ID: <20061214023222.GA29084@powdermilk.math.berkeley.edu> p4raw-id: //depot/perl@29578
Diffstat (limited to 't/io/fs.t')
-rwxr-xr-xt/io/fs.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/io/fs.t b/t/io/fs.t
index 283a5a82f4..5b2de64846 100755
--- a/t/io/fs.t
+++ b/t/io/fs.t
@@ -203,7 +203,7 @@ SKIP: {
skip "has fchown", 1 if ($Config{d_fchown} || "") eq "define";
open(my $fh, "<", "a");
eval { chown(0, 0, $fh); };
- like($@, qr/^The fchown function is unimplemented at/, "fchown is unimplemented");
+ like($@, qr/^The f?chown function is unimplemented at/, "fchown is unimplemented");
}
is(rename('a','b'), 1, "rename a b");