summaryrefslogtreecommitdiff
path: root/t/io
diff options
context:
space:
mode:
authorPaul Green <Paul.Green@stratus.com>2002-03-07 09:25:00 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2002-03-07 22:43:31 +0000
commit5ca35bcb9bebeaf18b12337306900f3d4105ce12 (patch)
tree711fdacc0264806e008701f84f3ed2377027ffca /t/io
parent799ef3cbf1e54d039c2681bb415c66a8acfbc6cd (diff)
downloadperl-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-xt/io/fs.t6
1 files changed, 5 insertions, 1 deletions
diff --git a/t/io/fs.t b/t/io/fs.t
index 8e74a810c4..c30e14acf6 100755
--- a/t/io/fs.t
+++ b/t/io/fs.t
@@ -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");