winetest: Make sure we can send larger files.

oldstable
Paul Vriens 2006-11-30 19:01:02 +01:00 committed by Alexandre Julliard
parent 671a2261c0
commit 70ce548566
1 changed files with 3 additions and 3 deletions

View File

@ -137,11 +137,11 @@ send_file (const char *name)
}
fseek (f, 0, SEEK_END);
filesize = ftell (f);
if (filesize > 1024*1024) {
if (filesize > 1.5*1024*1024) {
report (R_WARNING,
"File too big (%.1f MB > 1 MB); submitting partial report.",
"File too big (%.1f MB > 1.5 MB); submitting partial report.",
filesize/1024.0/1024);
filesize = 1024*1024;
filesize = 1.5*1024*1024;
}
fseek (f, 0, SEEK_SET);