summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Updated QtScript.txt autotest category file to reflect current test set.Janne Anttila2009-08-121-1/+0
|
* Fixed failure to build tests due to missing qkeyevent.Rohan McGovern2009-08-121-1/+0
| | | | Since the qkeyevent test was removed, also remove it from auto.pro.
* Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-s60-publicShane Kearns2009-08-115-12/+17
|\
| * Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicMiikka Heikkinen2009-08-115-14/+13
| |\
| | * Fixed qstatemachine autotest compilaton for Symbian OS.Janne Anttila2009-08-111-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | Apparently Nokia X86 compiler is not able to use templated qCompare when given arguments have different different type but same base class. This error should be isolated and reported to Nokia X86 team. See task: 259508
| | * Fixed qlocale autotest compile error for Symbian.Janne Anttila2009-08-111-1/+1
| | |
| | * Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-08-1110-320/+56
| | |\
| | * | Fixed qline autotest merge, tst_qline.cpp was added twice to SOURCES.Janne Anttila2009-08-111-1/+0
| | | |
| * | | Fixed qtextstream autotest for SymbianMiikka Heikkinen2009-08-112-2/+8
| | | |
* | | | Fix autotest failure in qgraphicsitem.Shane Kearns2009-08-111-0/+24
| |_|/ |/| | | | | | | | | | | | | | When autofocused child is deleted, remove from ancestors to avoid double deletion crash. Check for null receiver when auto SIP is enabled in mouseReleaseEvent
* | | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-08-117-315/+51
|\ \ \ | |/ /
| * | Added default IAP checking to tst_qnetworkaccessmanager_and_qprogressdialog.Miikka Heikkinen2009-08-111-1/+8
| | |
| * | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicMiikka Heikkinen2009-08-1111-345/+103
| |\ \
| | * | test slots are not constHarald Fernengel2009-08-111-38/+38
| | | |
| | * | Removed qkeyevent autotest.axis2009-08-113-269/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This test hasn't been updated in years, and never worked in the first place. RevBy: Trust me
| * | | RVCT didn't like a test bool variable exported directly from QtGui,Miikka Heikkinen2009-08-112-7/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | causing applications to panic with KERN-EXEC 3. Fixed by providing accessor for the bool in question instead of exporting it directly. Note: Unknown why exactly this panic occurs, as exporting bools works just fine when tested with small test executable + dll. Something in QtGui causes this to fail; I suspect it might be the massive code segment size and relocation of the data segment that is contributing to this problem. RevBy: Jason Barron
* | | | Fixed qpropertyanimation autotest build for win32-msvc2008.Janne Anttila2009-08-111-1/+1
| | | |
* | | | Removed unneccessary QHostAddress cast from tst_qnativesocketengine.cppJanne Anttila2009-08-111-3/+3
| |/ / |/| | | | | | | | The cast/constructor is not needed anymore due to commit 5b80fbad.
* | | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-08-112-4/+8
|\ \ \ | | |/ | |/|
| * | Fixed SRCDIR for qxmlquery autotest for SymbianJanne Anttila2009-08-112-4/+8
| | |
* | | Fixed qsocketnotifier autotest compilation for win32-msvc2008 platform.Janne Anttila2009-08-111-1/+1
|/ /
* | Switched QtNetworkSetting to use 'qt-test-server' config by default.Janne Anttila2009-08-111-5/+6
| | | | | | | | | | | | | | | | Qt/Master uses qt-test-server config by default but our S60/master was configure to use different server by default. The assumption is that this caused several QtNetwork autotests to fail when testing QtS60 branch on other configurations in QtSW premises. This because the old test server was very likely unavailable...
* | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-08-11186-629/+1402
|\ \
| * | Add comparison operators also to subclassesHarald Fernengel2009-08-101-0/+27
| |/ | | | | | | | | Compiler would for some reason choose operator bool() instead when comparing subclasses of QScopedPointer.
| * Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-s60-publicJason Barron2009-08-101-2/+2
| |\
| | * Make eventloop autotest compile for windows.Liang Qi2009-08-101-2/+2
| | |
| * | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-s60-publicJason Barron2009-08-103-6/+16
| |\ \ | | |/
| * | Merge commit 'qt/master'Jason Barron2009-08-107-66/+78
| |\ \
| | * | Moved tests/auto/runQtXmlPatternsTests.sh to devtools/shellLeonardo Sobral Cunha2009-08-101-61/+0
| | | |
| | * | Add QBENCMARK_ONCE to QTestLib.Morten Sorvig2009-08-102-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The code block associated with QBENCHMARK_ONCE macro will only be executed once, whether the backend returns a valid result or not. The "-iterations" command line argument is also ignored. This is useful for benchmarking code that has side effects. Revby: jasplin
| | * | Make QTimeLine::start() restart from the beginning as the documentation says.David Faure2009-08-101-1/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The documentation implies that start restarts. Which it did, but only if the timeline was finished _and_ the duration hadn't been changed meanwhile. So after a setDuration(), start() would do nothing, which was unexpected. Merge-request: 1145 Reviewed-by: Olivier Goffart <ogoffart@trolltech.com>
| | * | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtKeith Isdale2009-08-10139-344/+593
| | |\ \
| | | * | Set default QGraphicsTransform3D axis to (0, 0, 1)Rhys Weatherley2009-08-101-1/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The docs said that the default axis was (0, 0, 1), but the code and unit tests were using (0, 0, 0). Modify the code to match the docs because (0, 0, 0) is not very useful. Also optimize the calculation of sin/cos values for 90, 180, and 270 degrees. Reviewed-by: Aaron Kennedy
| | * | | In a .pro file the include() function does not warn if specified fileKeith Isdale2009-08-102-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | can not be found change that behavior to warn by default. Currently the default behavior of include() in a .pro file is not to warn if the supplied file argument can not be found which can lead to hard to find build errors. The include() will now,by default, warn if the specified file can not be found. If a warning is not required because the included file is optional then example use in the .pro file: include(SomePriFile.pri", "", true) Task-number:259398 Reviewed-by:Marius Storm-Olsen
| * | | | Merge commit 'qt/master-stable'Jason Barron2009-08-10178-562/+1296
| |\ \ \ \ | | | |/ / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/corelib/kernel/qobject.cpp src/corelib/tools/qsharedpointer_impl.h src/gui/widgets/qdatetimeedit.cpp src/gui/widgets/qlinecontrol.cpp src/gui/widgets/qlineedit.cpp tests/auto/qcssparser/qcssparser.pro tests/auto/qicoimageformat/tst_qicoimageformat.cpp tests/auto/qmultiscreen/qmultiscreen.pro tests/auto/qresourceengine/qresourceengine.pro tests/auto/qresourceengine/tst_qresourceengine.cpp tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp
| | * | | QItemSelectionModel did not send selectionChanged signal when deleting an itemGabriel de Dietrich2009-08-071-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in a tree-like model with one of its grand-children being selected. Added recursive deselection for the model. Task-number: 232634 Reviewed-by: thierry
| | * | | QDockWidget: Make visibilityChanged more accurateThierry Bastian2009-08-071-1/+18
| | | | | | | | | | | | | | | | | | | | Task-number: 258459
| | * | | Fixes: QComboBox keyboard search not working properly when current index is -1Olivier Goffart2009-08-071-0/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the current index is invalid, start would be (0,0) but would be skiped Task-number: 220195 Reviewed-by: thierry
| | * | | xmlpatterns autotest: make tests work from shadow directoryPeter Hartmann2009-08-072-67/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... by prepending SRCDIR to the loaded files. Reviewed-by: TrustMe
| | * | | fixing qmainwindow autotestThomas Hartmann2009-08-071-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On windows mobile with native menubar integration the menubar is not a child of the mainwindow Reviewed-by: Joerg
| | * | | Extra check in pluginloader autotestThomas Hartmann2009-08-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This extra check prevents a crash if plugin loading fails Reviewed-by: Joerg
| | * | | Adding QApplication::processEvents to autotestThomas Hartmann2009-08-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows CE is sometimes a little bit slow Reviewed-by: Joerg
| | * | | Fixing deployment for shadow builds on Windows CEThomas Hartmann2009-08-072-3/+2
| | | | | | | | | | | | | | | | | | | | Reviewed-by: Joerg
| | * | | tst_QFile::copyAfterFail fixed on WindowsJoerg Bornemann2009-08-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We cannot remove a file that's still opened. Reviewed-by: ossi
| | * | | tst_qsharedpointer compile fix for Windows CEJoerg Bornemann2009-08-061-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There's no time() on Windows CE. Reviewed-by: Daniel Molkentin
| | * | | tst_qfileinfo fixed for Windows CEJoerg Bornemann2009-08-061-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Win CE doesn't support real file permissions (FAT only). Further, we don't have pagefile.sys. Reviewed-by: thartman
| | * | | tst_QHostInfo: Disable short name tests for lookupIPv4.Jocelyn Turcotte2009-08-061-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These tests run against domain names in troll.no and to allow shorter names the machine has to be in this domain. Removing them since this specific case test the OS more than Qt itself. Reviewed-by: Thiago
| | * | | tst_qstyle compile fixJoerg Bornemann2009-08-061-1/+1
| | | | | | | | | | | | | | | | | | | | Reviewed-by: thartman
| | * | | fix tst_qlocalsocket::readBufferOverflow for Windows CEJoerg Bornemann2009-08-061-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The TCP socket must get the chance to read data into its read buffer after the first read operation emptied it. Reviewed-by: thartman
| | * | | fix warning in tst_qlocalsocketJoerg Bornemann2009-08-061-0/+1
| | | | | | | | | | | | | | | | | | | | Reviewed-by: thartman