Introduce HAS_LLSEEK.
[p5sagit/p5-mst-13.2.git] / t / lib / syslfs.t
CommitLineData
ea2b5ef6 1# NOTE: this file tests how large files (>2GB) work with raw system IO.
2# open(), tell(), seek(), print(), read() are tested in t/op/lfs.t.
3# If you modify/add tests here, remember to update also t/op/lfs.t.
4
5BEGIN {
05f8a9f5 6 # Don't bother if there are no quads.
ea2b5ef6 7 eval { my $q = pack "q", 0 };
8 if ($@) {
9 print "1..0\n# no 64-bit types\n";
48ea9154 10 exit(0);
ea2b5ef6 11 }
12 chdir 't' if -d 't';
13 unshift @INC, '../lib';
9f8fdb7d 14 require Config; import Config;
15 # Don't bother if there are no quad offsets.
16 if ($Config{lseeksize} < 8) {
64215065 17 print "1..0\n# no 64-bit file offsets\n";
48ea9154 18 exit(0);
9f8fdb7d 19 }
ea2b5ef6 20 require Fcntl; import Fcntl;
21}
22
23sub bye {
24 close(BIG);
25 unlink "big";
26 exit(0);
27}
28
05f8a9f5 29# Known have-nots.
ea2b5ef6 30if ($^O eq 'win32' || $^O eq 'vms') {
31 print "1..0\n# no sparse files\n";
32 bye();
33}
34
05f8a9f5 35# Then try to deduce whether we have sparse files.
36
ea2b5ef6 37# We'll start off by creating a one megabyte file which has
05f8a9f5 38# only three "true" bytes. If we have sparseness, we should
39# consume less blocks than one megabyte (assuming nobody has
40# one megabyte blocks...)
ea2b5ef6 41
a015af24 42my $O_LARGEFILE;
43eval { $O_LARGEFILE = O_LARGEFILE };
44$O_LARGEFILE = 0 unless defined $O_LARGEFILE;
45
46sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC|$O_LARGEFILE) or
ea2b5ef6 47 do { warn "sysopen failed: $!\n"; bye };
48sysseek(BIG, 1_000_000, SEEK_SET);
49syswrite(BIG, "big");
50close(BIG);
51
52my @s;
53
54@s = stat("big");
55
56print "# @s\n";
57
5cec1e3b 58my $BLOCKSIZE = 512; # is this really correct everywhere?
59
ea2b5ef6 60unless (@s == 13 &&
61 $s[7] == 1_000_003 &&
ea2b5ef6 62 defined $s[12] &&
5cec1e3b 63 $BLOCKSIZE * $s[12] < 1_000_003) {
ea2b5ef6 64 print "1..0\n# no sparse files?\n";
65 bye();
66}
67
68# By now we better be sure that we do have sparse files:
69# if we are not, the following will hog 5 gigabytes of disk. Ooops.
70
71print "1..8\n";
72
05f8a9f5 73my $fail = 0;
74
a015af24 75sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC|$O_LARGEFILE) or
ea2b5ef6 76 do { warn "sysopen failed: $!\n"; bye };
77sysseek(BIG, 5_000_000_000, SEEK_SET);
78syswrite(BIG, "big");
79close BIG;
80
81@s = stat("big");
82
83print "# @s\n";
84
05f8a9f5 85sub fail () {
64215065 86 print "not ";
05f8a9f5 87 $fail++;
88}
89
64215065 90fail unless $s[7] == 5_000_000_003; # exercizes pp_stat
ea2b5ef6 91print "ok 1\n";
92
64215065 93fail unless -s "big" == 5_000_000_003; # exercizes pp_ftsize
ea2b5ef6 94print "ok 2\n";
95
96sysopen(BIG, "big", O_RDONLY) or do { warn "sysopen failed: $!\n"; bye };
97
98sysseek(BIG, 4_500_000_000, SEEK_SET);
99
05f8a9f5 100fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
ea2b5ef6 101print "ok 3\n";
102
103sysseek(BIG, 1, SEEK_CUR);
104
05f8a9f5 105fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_001;
ea2b5ef6 106print "ok 4\n";
107
108sysseek(BIG, -1, SEEK_CUR);
109
05f8a9f5 110fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
ea2b5ef6 111print "ok 5\n";
112
113sysseek(BIG, -3, SEEK_END);
114
05f8a9f5 115fail unless sysseek(BIG, 0, SEEK_CUR) == 5_000_000_000;
ea2b5ef6 116print "ok 6\n";
117
118my $big;
119
05f8a9f5 120fail unless sysread(BIG, $big, 3) == 3;
ea2b5ef6 121print "ok 7\n";
122
05f8a9f5 123fail unless $big eq "big";
ea2b5ef6 124print "ok 8\n";
125
126bye();
127
05f8a9f5 128if ($fail) {
129 print STDERR <<EOM;
130#
131# If the lfs (large file support) tests fail, it means that
132# the *file system* you are running the tests on doesn't support
133# large files (files larger than two gigabytes). Perl may still
134# be able to support such files, once you have such a file system.
135#
136EOM
137}
138
ea2b5ef6 139# eof