diff options
author | Paul Green <Paul.Green@stratus.com> | 2002-05-04 10:01:00 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-05-04 17:00:58 +0000 |
commit | 0f4ea74e3de0f657a4b2a6ef601d944a9cad5c5b (patch) | |
tree | d42f3531e461ccaf3c93790c9e409d5861da0f20 /t/io | |
parent | 3164dd77493d8c6d2197a3faf95daafb93006a96 (diff) | |
download | perl-0f4ea74e3de0f657a4b2a6ef601d944a9cad5c5b.tar.gz |
fix t/io/fs.t for VOS
Message-Id: <200205041801.OAA13071@mailhub1.stratus.com>
p4raw-id: //depot/perl@16399
Diffstat (limited to 't/io')
-rwxr-xr-x | t/io/fs.t | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -271,7 +271,7 @@ SKIP: { # Check truncating a closed file. eval { truncate "Iofs.tmp", 5; }; - skip("no truncate - $@", 10) if $@; + skip("no truncate - $@", 6) if $@; is(-s "Iofs.tmp", 5, "truncation to five bytes"); @@ -304,7 +304,7 @@ SKIP: { } if ($^O eq 'vos') { - skip ("# TODO - hit VOS bug posix-973 - cannot resize an open file below the current file pos.", 7); + skip ("# TODO - hit VOS bug posix-973 - cannot resize an open file below the current file pos.", 3); } is(-s "Iofs.tmp", 200, "fh resize to 200 working (filename check)"); |