summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib.pro
Commit message (Collapse)AuthorAgeFilesLines
* tests: make tests compile or disable those which don't compileSergio Ahumada2011-12-071-0/+4
| | | | | | | | | These changes are mostly a backport from qtbase and a fix to those tests that are dependent on private APIs. Change-Id: I6e647583d7aaddf525d719c3b61f59a0c9aedf74 Reviewed-by: Rohan McGovern Reviewed-by: Friedemann Kleint
* add qscopedvaluerollback autotest to corelib.proShane Kearns2011-01-271-0/+1
|
* Smoke test for QAbstractFileEngineJoão Abecasis2010-11-241-0/+1
| | | | | | | | | | | | | | | | This tests the default file support provided by Qt, together with QFSFileEngine, QResource engine and a reference custom file engine that works on top of a simple virtual in-memory file system. For now, the test is only focusing on QFile I/O functionality, it should be extended to cover QFileInfo, QDir, QDirIterator and file system operations in QFile. The intent for the reference file engine is not to be a fully functional file system, but to ensure that minimal support for custom file engines is working. Reviewed-by: Shane Kearns
* Add unit test for qfilesystementryThomas Zander2010-08-251-0/+1
| | | | Reviewed-by: Joao
* Merge remote branch 'origin/4.7' into qt-master-from-4.7Thiago Macieira2010-07-011-0/+7
|\ | | | | | | | | | | | | | | | | Conflicts: bin/syncqt src/gui/text/qtextlayout.cpp tools/assistant/tools/assistant/helpviewer_qwv.cpp tools/assistant/tools/assistant/helpviewer_qwv.h tools/configure/configureapp.cpp
| * Various fixes to autotests when using the symbian/linux-armcc mkspec.axis2010-06-291-0/+7
| |
* | Add some convenience functions for QStringRefAnders Bakken2010-05-311-0/+1
|/ | | | | | | | | | | | | | | QStringRef was hard to use for a lot of real-world tasks since it lacked methods similar to the ones in QString for indexOf/lastIndexOf/contains/startsWith/endsWith This patch adds that functionality. I also copied the relevant test cases from QString for the new APIs and introduced a QStringRef test. Merge-request: 625 Reviewed-by: Olivier Goffart <olivier.goffart@nokia.com> Reviewed-by: ossi
* Build and run QElapsedTimer test.Aaron McCarthy2010-03-181-0/+1
|
* Move tests into separate .pro files, based on Qt module.Rohan McGovern2010-03-041-0/+102
Having the tests in separate projects allows for some optimization strategies when running the tests (e.g. start running corelib tests while the rest of Qt is still compiling), and allows developers to run only a subset of tests when appropriate.