p4raw-id: //depot/cfgperl@4169
} else {
print "# close failed: $!\n"
}
- if ($! =~/File too large/) {
- print "1..0\n# writing past 2GB failed\n";
- explain();
+ if ($! =~/too large/i) {
+ print "1..0\n# writing past 2GB failed: process limits?\n";
+ } elsif ($! =~ /quota/i) {
+ print "1..0\n# filesystem quota limits?\n";
}
+lain();
bye();
}
} else {
print "# close failed: $!\n"
}
- if ($! =~/File too large/) {
- print "1..0\n# writing past 2GB failed\n";
- explain();
+ if ($! =~/too large/i) {
+ print "1..0\n# writing past 2GB failed: process limits?\n";
+ } elsif ($! =~ /quota/i) {
+ print "1..0\n# filesystem quota limits?\n";
}
+ ain();
bye();
}