UNICOS does support large files but doesn't support sparse files
authorJarkko Hietaniemi <jhi@iki.fi>
Fri, 17 Sep 1999 14:07:16 +0000 (14:07 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Fri, 17 Sep 1999 14:07:16 +0000 (14:07 +0000)
so we cannot easily test for large file support.

p4raw-id: //depot/cfgperl@4174

t/lib/syslfs.t
t/op/lfs.t

index c3f7de3..4619e11 100644 (file)
@@ -49,6 +49,13 @@ if ($^O eq 'win32' || $^O eq 'vms') {
     bye();
 }
 
+# Known haves that have problems running this test
+# (for example because they do not support sparse files, like UNICOS)
+if ($^O eq 'unicos') {
+    print "1..0\n# large files known to work but unable to test them here\n";
+    bye();
+}
+
 # Then try to deduce whether we have sparse files.
 
 # We'll start off by creating a one megabyte file which has
index dcba630..129752b 100644 (file)
@@ -48,6 +48,13 @@ if ($^O eq 'win32' || $^O eq 'vms') {
     bye();
 }
 
+# Known haves that have problems running this test
+# (for example because they do not support sparse files, like UNICOS)
+if ($^O eq 'unicos') {
+    print "1..0\n# large files known to work but unable to test them here\n";
+    bye();
+}
+
 # Then try to deduce whether we have sparse files.
 
 # Let's not depend on Fcntl or any other extension.