aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/debugger/shared
Commit message (Collapse)AuthorAgeFilesLines
* Rename QDeclarative symbols to QQuick and QQmlMatthew Vogt2012-02-242-317/+0
| | | | | | | | | | | | | Symbols beginning with QDeclarative are already exported by the quick1 module. Users can apply the bin/rename-qtdeclarative-symbols.sh script to modify client code using the previous names of the renamed symbols. Task-number: QTBUG-23737 Change-Id: Ifaa482663767634931e8711a8e9bf6e404859e66 Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Debugger: Consistenly use 'state' instead of 'status'Kai Koehne2012-02-102-9/+9
| | | | | | | | | Fix inconsistent naming e.g. in QtDeclarativeEngineDebug by always using 'state' instead of 'status'. This is in line with the other source code, which also seems to favor 'state'. Change-Id: I65a7a3bd0eb7dfffeb37b5f8dad15b0a4a78de70 Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
* Remove "All rights reserved" line from license headers.Jason McDonald2012-01-302-2/+2
| | | | | | | | | | As in the past, to avoid rewriting various autotests that contain line-number information, an extra blank line has been inserted at the end of the license text to ensure that this commit does not change the total number of lines in the license header. Change-Id: If39bd256b0fa85eba17ea30f8ab87ea27d758908 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Update obsolete contact address.Jason McDonald2012-01-232-2/+2
| | | | | | | | Replace Nokia contact email address with Qt Project website. Change-Id: I6a730abc0c396fb545a48b2d6938abedac2e3f1c Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com> Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
* Update copyright year in license headers.Jason McDonald2012-01-052-2/+2
| | | | | Change-Id: I0a8d99909cac867dce72da70b1bbcb649989a51b Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* DeclarativeDebug: Add version info to service pluginsAurindam Jana2011-12-162-3/+3
| | | | | | | | Send the version info of each plugin alongwith the plugin names to client. Change-Id: I223689b32cdc5b0c48a4f508330033352b427937 Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
* Debugger: Run js autotests with QML_DISABLE_OPTIMIZERKai Koehne2011-12-082-0/+9
| | | | | | | That's how you'd usually debug your app too. Change-Id: I5acbf2fea0db3cb8593d690638f90ec849cf316a Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
* test/debugutils: Add include guard.Friedemann Kleint2011-12-062-6/+10
| | | | | Change-Id: I3d65569851169ce4aa350b0268ec5ca1c516613e Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
* Debugger: Make registration of services explicitKai Koehne2011-11-231-0/+1
| | | | | | | | | | Services now have to call registerService() themselves in the constructor. This fixes a race condition where the empty implementation of messageReceived() was called instead of the one in the subclass because the object wasn't fully constructed yet. Change-Id: I590ec8b76e906bdb6b5cdcb18680938edde283ee Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
* Debugger: Fix warnings about QProcess still running in autotestKai Koehne2011-11-172-4/+2
| | | | | Change-Id: Ib0c68629cfe430a0d13b1504f86bfa78e85007b4 Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
* Debugger: Fix trace service for tracing on startup in block modeKai Koehne2011-11-112-8/+14
| | | | | | | | | | | Don't call QDeclarativeDebugTrace::instance() inside messageReceived, since messageReceived() will be called for the first message while the constructor is still running. Also add proper autotests for qdeclarativedebugtrace. Change-Id: Ic37d077d93ad4957fb21035abe40b2d281278314 Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
* Debugger: Add autotest skeleton for inspector serviceKai Koehne2011-10-242-0/+102
| | | | | Change-Id: I2edd0d46f9b82262b91833945515374b9683be4b Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
* Debugger: Move debugging autotests into own folderKai Koehne2011-10-172-0/+197
This mirrors the source tree structure and makes it easier to run them all in one go. Change-Id: Ia191790eaec2c409857c41aff479d2ebd144aaf8 Reviewed-by: Kai Koehne <kai.koehne@nokia.com>