diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 2006-12-13 10:32:22 -0800 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-12-18 11:47:56 +0000 |
commit | 295d5f02f7120b75c639212780c96fcd67ffb3d6 (patch) | |
tree | a44f8e16930764c93d17f0f7918f6353d84862e0 /t/io/fs.t | |
parent | 2563cec55ae473562ff3ccda41cd10289db419be (diff) | |
download | perl-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-x | t/io/fs.t | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |