summaryrefslogtreecommitdiffstats
path: root/tests/auto
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-11-041-0/+1
|\
| * Largely rewrite the Using QML in C++ Applications documentation. ItBea Lam2010-11-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | now has an overview of different approaches to QML/C++ integration and demonstrates how to pass data between QML and C++ through properties/functions/signals. The part in the old docs that focused on QDeclarativeContext has been merged into the QDeclarativeContext class docs (although most of the info was largely covered in there already) and the part that covered Network Components has been moved to the QDeclarativeComponent class docs. The custom enum types example previously in extending-tutorial.qdoc has been moved to these new docs. Task-number: QTBUG-14923
* | Maintain passing visualtests on X11Alan Alpert2010-11-0410-3/+925
|/ | | | | | | | springanimation/follow.qml has had updated visuals, unknown cause. the text tests were committed without an actual testcase, now added the 'skip' property has now been documented in the tst_qmlvisual help Task-number: QTBUG-14792
* Fix regression in 648eb76c and update visual tests.Martin Jones2010-11-0416-369/+369
| | | | | | | Once fixup() begins, flick should not be recalculated. Task-number: QTBUG-14821 Reviewed-by: Michael Brasser
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-11-043-0/+32
|\
| * Add testcase for QTBUG-13719.Michael Brasser2010-11-043-0/+32
| |
* | Don't emit xChanged()/yChanged() twice.Martin Jones2010-11-041-0/+10
|/ | | | | | | | | Once from QGraphicsObject (QGraphicsItemPrivate::setPosHelper()) and once from QDeclarativeItem::geometryChanged(). Remove from geometryChanged(). Task-number: QTBUG-14942 Reviewed-by: Michael Brasser
* highlightranges.qml example and visual test contained binding loop.Martin Jones2010-11-031-4/+8
| | | | | | | | Also, the currentIndex stayed -1 since the views all bound to each others currentIndex, which starts as -1. Task-number: QTBUG-14794 Reviewed-by: Yann Bodson
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-11-0311-2/+912
|\
| * Regression: QDeclarativeText does not update when text turns emptyYann Bodson2010-11-034-0/+736
| | | | | | | | | | Task-number: QTBUG-14865 Reviewed-by: Michael Brasser
| * Qml Debugging: Only enable if explicitly requestedKai Koehne2010-11-025-2/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | Enable the remote debugging of QDeclarativeEngines only after QDeclarativeDebugHelper::enableDebugging() has been called. Approved by 4.7 Program Team. Reviewed-by: Alessandro Portale Task-number: QTBUG-13762
| * Regression: Text element breaks when using \n for separating linesYann Bodson2010-11-022-0/+153
| | | | | | | | | | Task-number: QTBUG-14915 Reviewed-by: Michael Brasser
* | Combining ListView.StrictlyEnforceRange and resizing currentItem stalls.Martin Jones2010-11-038-0/+2150
|/ | | | | | | | | There were two problems. 1) layout() called fixup() was called while the view was being flicked. 2) the snapping code was incorrect (and duplicated). Task-number: QTBUG-14821 Reviewed-by: Michael Brasser
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-11-022-72/+367
|\
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-11-012-72/+367
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: QNAM HTTP: tst_qnetworkreply with setReadBufferSize() set Fix compilation on AIX 5.3 with gcc Doc: Fixed typo Fix poor English in QStyle::polish documentation. Fix a few typos in comments and docs.
| | * QNAM HTTP: tst_qnetworkreply with setReadBufferSize() setDavid Faure2010-11-011-71/+366
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This new method tests 4 cases (http/https, with/without buffer size) and checks the send/receive rates to check that the actual transfer rate was limited, not just the speed of emission of data to the application. Task-number: QTBUG-6276 Merge-request: 872 Reviewed-by: Markus Goetz <Markus.Goetz@nokia.com>
| | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-11-011-1/+1
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: Fix poor English in QStyle::polish documentation. Fix a few typos in comments and docs.
| | | * Fix a few typos in comments and docs.Jason McDonald2010-11-011-1/+1
| | | | | | | | | | | | | | | | | | | | Task-number: QTBUG-13714 Reviewed-by: Trust Me
* | | | Removing a binding while it is being applied caused a crash.Martin Jones2010-11-022-0/+42
|/ / / | | | | | | | | | | | | | | | | | | | | | Use a weak pointer to the binding in case applying the binding (while fast forwarding) causes it to be removed. Task-number: QTBUG-14830 Reviewed-by: Michael Brasser
* | | Quickly clicking an item that doesn't use double clicking should result in ↵Joona Petrell2010-11-012-0/+58
|/ / | | | | | | | | | | | | two separate clicks Task-number: QTBUG-14832 Reviewed-by: Martin Jones
* | Fix QML visual tests on Mac.Yann Bodson2010-11-0167-5595/+11720
|/ | | | Task-number: QTBUG-14792
* Merge remote branch 'origin/4.6' into qt-4.7-from-4.6Olivier Goffart2010-10-301-0/+33
|\ | | | | | | | | Conflicts: tests/auto/qpainter/tst_qpainter.cpp
| * Fix Windows compilation.Samuel Rødal2010-10-271-0/+1
| | | | | | | | | | | | | | Don't take for granted that these are included... Task-number: QTBUG-14614 Reviewed-by: Bradley T. Hughes
| * Fixed race condition in raster paint engine.Samuel Rødal2010-10-271-0/+32
| | | | | | | | | | | | | | We need to protect the gradient cache accesses with a mutex. Task-number: QTBUG-14614 Reviewed-by: Bradley T. Hughes
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-10-2962-25/+19929
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Update webview visual tests to new skip mode Remove unnecessary QML import project dependency to Symbian deployment pri file used by Qt demos Update visual tests for Mac Revert "Disable WebView visualtests" Mark dynamic.qml as expect-fail the new way Update gridview visual tests Revert "Mark qdeclarativegridview autotests as expect-fail"
| * \ Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-10-294-0/+22
| |\ \
| | * | Update visual tests for MacYann Bodson2010-10-294-0/+22
| | | | | | | | | | | | | | | | Task-number: QTBUG-14792
| * | | Update webview visual tests to new skip modeAlan Alpert2010-10-2912-17/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New mode requires them to at least compile. Now that I've noticed this, removing that check on compile failures in QDeclarativeTester. Task-number: QTBUG-14792
| * | | Revert "Disable WebView visualtests"Alan Alpert2010-10-2924-0/+12940
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 8ba02a8f5a537b9f7e1ff671abe6eed67029db58. ExpectFail state has been altered. Redoing that commit. This commit also adds the new line to indicate tests we don't care about
| * | | Mark dynamic.qml as expect-fail the new wayAlan Alpert2010-10-299-2/+1605
| | | | | | | | | | | | | | | | | | | | | | | | Also remove the check for the old way in tst_qmlvisual Task-number: QTBUG-14792
| * | | Update gridview visual testsAlan Alpert2010-10-2913-373/+374
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The bug found in gridview.qml doesn't actually stop the test from passing, so it's now updated. Task-number: QTBUG-14792
| * | | Revert "Mark qdeclarativegridview autotests as expect-fail"Alan Alpert2010-10-2925-4/+5338
| |/ / | | | | | | | | | | | | This reverts commit b6ee57e14e145d9caa3f572d55447ec92f78cea4. Changed our mind about how to mark tests as expect-fail
* | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-10-293-35/+45
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (25 commits) QNAM: Fix doc rendering of QNetworkRequest remove the connecting thread, and use async call to dbus instead. QScriptValue::construct(): Don't crash if function throws non-Object Network code: Fix code comment spellchecking errors. QNAM: fix build QNAM HTTP: Remove the error() of QHttpNetworkConnection QNAM HTTP: Remove enableEncryption() QNAM HTTP: Remove unused code QNAM HTTP: Move authenticationRequired() to QHttpNetworkReply QNAM HTTP: Move proxyAuthenticationRequired() to QHttpNetworkReply QNAM HTTP: Move cacheCredentials() to QHttpNetworkReply QNAM HTTP: Use sslErrors() from QHttpNetworkReply QNAM HTTP: Remove Wait4AuthState QNAM: Internal function renaming QNAM HTTP: Internal variable spelling mistakes QNAM HTTP: Pause connection when emitting proxy auth signal QNAM HTTP: Also pause connection when emitting sslErrors() QNAM HTTP: Also resume uploads after connection pause QNAM HTTP: Process authenticationRequired() from HTTP properly QNAM HTTP: Pause sockets while emitting to user code. ...
| * | QScriptValue::construct(): Don't crash if function throws non-ObjectKent Hansen2010-10-282-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If an exception occurs, we should ignore the result of JSC::construct() and return the exception value, even if the exception is not an object. This makes the behavior match the documentation: "Calling construct() can cause an exception to occur in the script engine; in that case, construct() returns the value that was thrown". Task-number: QTBUG-14801 Reviewed-by: Jedrzej Nowacki
| * | QNAM HTTP: Remove the error() of QHttpNetworkConnectionMarkus Goetz2010-10-271-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | Removed the distinction between reply error and connection error. The QNetworkAccessManager was treating them the same way anyway. Reviewed-by: Prasanth Task-Number: QTBUG-13234
| * | QNAM HTTP: Remove enableEncryption()Markus Goetz2010-10-271-21/+5
| | | | | | | | | | | | | | | Reviewed-by: Prasanth Task-Number: QTBUG-13234
| * | QNAM HTTP: Move authenticationRequired() to QHttpNetworkReplyMarkus Goetz2010-10-271-9/+9
| | | | | | | | | | | | | | | Reviewed-by: Prasanth Task-Number: QTBUG-13234
| * | QNAM HTTP: Use sslErrors() from QHttpNetworkReplyMarkus Goetz2010-10-271-4/+6
| | | | | | | | | | | | | | | Reviewed-by: Prasanth Task-Number: QTBUG-13234
| * | QNAM HTTP: Process authenticationRequired() from HTTP properlyMarkus Goetz2010-10-271-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes a bug where a different QNetworkReply(Impl) handles an authentication request. Reviewed-by: Peter Hartmann Reviewed-by: Prasanth Task-Number: QTBUG-13234
* | | Add 'skip' property that QML visual tests can useAlan Alpert2010-10-2923-3/+2230
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This property can be set with a reason to skip the test (i.e. known bug) and the failure will not count for blocking purposes. This change also alters one of the failing tests to use the new property Task-number: QTBUG-14792 Reviewed-by: Michael Brasser
* | | Almost all visual tests pass on linuxAlan Alpert2010-10-294-3195/+2
| | | | | | | | | | | | | | | | | | Still looking into text/fonts/plaintext which just developed an issue. Task-number: QTBUG-14792
* | | Disable WebView visualtestsAlan Alpert2010-10-2912-12928/+0
| | | | | | | | | | | | | | | | | | | | | Until this element is maintained, all tests are entering expectFail state. Task-number: QTBUG-14792
* | | Clean up repeater visual testsAlan Alpert2010-10-2928-4260/+60
| | | | | | | | | | | | | | | | | | Replace text with coloured rectangles, for more cross platform stability Task-number: QTBUG-14792
* | | Clean up QML Rect visual testsAlan Alpert2010-10-296-276/+22
| | | | | | | | | | | | | | | | | | Mostly just creating the test scripts. Task-number: QTBUG-14792
* | | Update qdeclarativespringanimation visual testsAlan Alpert2010-10-2936-2901/+2378
| | | | | | | | | | | | | | | | | | | | | Still correct, main problem was not getting updated visuals when we switched away from follows. Task-number: QTBUG-14792
* | | Clean up qdeclarativesmoothedanimation visual testsAlan Alpert2010-10-299-1852/+0
| | | | | | | | | | | | | | | | | | Smoothed animation test is actually just a subset of smoothed follow now Task-number: QTBUG-14792
* | | Clean up qdeclarativepositioner testsAlan Alpert2010-10-2911-1871/+70
| | | | | | | | | | | | | | | | | | dynamic.qml is now at expect-fail status, see QTBUG-14839 Task-number: QTBUG-14792
* | | Update visuals for qdeclarativepathview visual testsAlan Alpert2010-10-2916-580/+580
| | | | | | | | | | | | | | | | | | | | | The only difference appears to be a change to the flicking parameters, so the test is still valid. Task-number: QTBUG-14792
* | | Clean up qdeclarativeparticles visual testAlan Alpert2010-10-295-193/+193
| | | | | | | | | | | | | | | | | | update visuals, and add a couple comments. Task-number: QTBUG-14792
* | | Mark qdeclarativegridview autotests as expect-failAlan Alpert2010-10-2925-5338/+4
| | | | | | | | | | | | | | | | | | Includes the task numbers of the bugs, for later processing. Task-number: QTBUG-14792