aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/controls
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2017-04-20 11:16:55 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2017-04-20 11:11:01 +0000
commit87c1ec3f3586a5dac7b3ba599249393d090f2300 (patch)
treef6f6d40af90b42e3b4971228e8c8ef2fe18061a0 /tests/auto/controls
parent9ba2c26a54b8180a822ab23b85fa2967bfa05683 (diff)
tst_controls: remove waitForRendering() from test_multiTouch
Not sure why this was added in the first place. Now it has been copied to all test_multiTouch() implementations and sometimes slows down the test round quite a bit. Change-Id: I76e259e0267b34de6432998385b9f2e6759b9819 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'tests/auto/controls')
-rw-r--r--tests/auto/controls/data/tst_button.qml1
-rw-r--r--tests/auto/controls/data/tst_dial.qml1
-rw-r--r--tests/auto/controls/data/tst_rangeslider.qml1
-rw-r--r--tests/auto/controls/data/tst_scrollbar.qml1
-rw-r--r--tests/auto/controls/data/tst_slider.qml1
5 files changed, 0 insertions, 5 deletions
diff --git a/tests/auto/controls/data/tst_button.qml b/tests/auto/controls/data/tst_button.qml
index c705832a..cf9cf64d 100644
--- a/tests/auto/controls/data/tst_button.qml
+++ b/tests/auto/controls/data/tst_button.qml
@@ -226,7 +226,6 @@ TestCase {
var control2 = createTemporaryObject(button, testCase, {y: control1.height})
verify(control2)
- waitForRendering(control2)
var pressedCount2 = 0
diff --git a/tests/auto/controls/data/tst_dial.qml b/tests/auto/controls/data/tst_dial.qml
index 3b20e91d..3955e60d 100644
--- a/tests/auto/controls/data/tst_dial.qml
+++ b/tests/auto/controls/data/tst_dial.qml
@@ -350,7 +350,6 @@ TestCase {
var dial2 = createTemporaryObject(dialComponent, testCase, {y: dial1.height});
verify(dial2);
- waitForRendering(dial2);
// press the second dial
touch.stationary(0).press(2, dial2, 0, 0).commit();
diff --git a/tests/auto/controls/data/tst_rangeslider.qml b/tests/auto/controls/data/tst_rangeslider.qml
index 2cd83b89..69ec6218 100644
--- a/tests/auto/controls/data/tst_rangeslider.qml
+++ b/tests/auto/controls/data/tst_rangeslider.qml
@@ -845,7 +845,6 @@ TestCase {
var control = createTemporaryObject(sliderComponent, testCase)
verify(control)
- waitForRendering(control)
compare(control.activeFocus, false)
// focus is forwarded to the first handle
diff --git a/tests/auto/controls/data/tst_scrollbar.qml b/tests/auto/controls/data/tst_scrollbar.qml
index c13bae3d..6697de88 100644
--- a/tests/auto/controls/data/tst_scrollbar.qml
+++ b/tests/auto/controls/data/tst_scrollbar.qml
@@ -331,7 +331,6 @@ TestCase {
var control2 = createTemporaryObject(scrollBar, testCase, {y: control1.height})
verify(control2)
- waitForRendering(control2)
var pressedCount2 = 0
var movedCount2 = 0
diff --git a/tests/auto/controls/data/tst_slider.qml b/tests/auto/controls/data/tst_slider.qml
index b02e77d0..127bdea6 100644
--- a/tests/auto/controls/data/tst_slider.qml
+++ b/tests/auto/controls/data/tst_slider.qml
@@ -419,7 +419,6 @@ TestCase {
var control2 = createTemporaryObject(slider, testCase, {y: control1.height, live: false})
verify(control2)
- waitForRendering(control2)
var pressedCount2 = 0
var movedCount2 = 0