diff options
author | Paul Green <Paul.Green@stratus.com> | 2002-03-07 09:25:00 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-07 22:43:31 +0000 |
commit | 5ca35bcb9bebeaf18b12337306900f3d4105ce12 (patch) | |
tree | 711fdacc0264806e008701f84f3ed2377027ffca /t/io | |
parent | 799ef3cbf1e54d039c2681bb415c66a8acfbc6cd (diff) | |
download | perl-5ca35bcb9bebeaf18b12337306900f3d4105ce12.tar.gz |
perl/t/io/fs.t -- VOS bug
Message-Id: <200203071924.OAA03273@mailhub2.stratus.com>
p4raw-id: //depot/perl@15086
Diffstat (limited to 't/io')
-rwxr-xr-x | t/io/fs.t | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -275,7 +275,11 @@ SKIP: { close (FH); open (FH, ">>Iofs.tmp") or die "Can't reopen Iofs.tmp"; } - is(-s "Iofs.tmp", 200, "fh resize to 200 working (filename check)"); + if ($^O eq 'vos') { + is(-s "Iofs.tmp", 200, "TODO - hit VOS bug posix-973 - fh resize to 200 working (filename check)"); + } else { + is(-s "Iofs.tmp", 200, "fh resize to 200 working (filename check)"); + } ok(truncate(FH, 0), "fh resize to zero"); |