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