summaryrefslogtreecommitdiffstats
path: root/tests/auto/qstringref
Commit message (Collapse)AuthorAgeFilesLines
* QtCore autotests: make them paralelized.Olivier Goffart2010-11-101-0/+1
| | | | | | | | | | | The filesystem autotests are not paralized (because i was scary) For reference, script I used: cat corelib.pro | grep -v "=" | grep \\\\ | cut -f1 -d\\ | sed "s/\(.*\) /\1/" | grep -v file | xargs -I{} echo "echo CONFIG += parallel_test >> {}/{}.pro" > t . t Reviexed-by: Joao
* Remove tst_QStringRef::localeAwareCompareOlivier Goffart2010-06-021-176/+0
| | | | This new test breaks on embedded.
* tst_qstringref.cpp: Fix licence header and compilation on windowsOlivier Goffart2010-06-011-4/+3
| | | | Somehow the emacs macro for style did a too good job
* Add some convenience functions for QStringRefAnders Bakken2010-05-312-0/+1062
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