summaryrefslogtreecommitdiffstats
path: root/tests/auto/qfile/largefile
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2010Jason McDonald2010-01-061-1/+1
| | | | Reviewed-by: Trust Me
* tst_largefile.cpp Windows CE compile fixJoerg Bornemann2009-11-092-4/+9
| | | | Reviewed-by: thartman
* Improving reliability and information from the large file testJoão Abecasis2009-11-061-0/+35
| | | | | | | | | | | Saw a couple of sporadic failures on Windows platforms. Debug output should help find what's happening. Once the fillFileSparsely test fails, there's no point in trying to read what we failed to write so maximum tested size is reset on a failed write. Reviewed-by: Markus Goetz
* Switch large file test to using Unbuffered modeJoão Abecasis2009-11-051-2/+2
| | | | | ... so we test the file engine directly and detect file-system errors earlier.
* Turns out 64-bit fseek/ftell are not available on VS 2003/2002...João Abecasis2009-10-291-0/+5
| | | | | | | | | Not when linking dynamically to the CRT (/MT). So we can't rely on them. The declarations for those are also not on the standard headers. Reverts "(MSVC 2002/2003) Use 64-bit versions of ftell and fseek", fixes return type of QT_FTELL and skips known failures on large-file test case.
* Fix the LargeFile test for WindowsJoão Abecasis2009-10-231-10/+15
| | | | | | The test assumed fileName was stable, but it is documented behaviour that this can be reset when a file descriptor or FILE* stream is associated with a QFile. This was the case on Windows.
* Adding a test case for large file supportJoão Abecasis2009-10-212-0/+496
The test case creates a (tentatively sparse) very large file with scattered data and uses it to test various aspects of large file support in QFile. Reviewed-by: Thiago Macieira