aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2016-01-06 20:49:18 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2016-01-06 20:49:23 +0100
commit4c7a8894562de4d69ea439cc62a02502a2d27be0 (patch)
treecfc8f8b8bf62b4562ecb409b4550d9dbfbeebace /tests
parent719dd0dd2721739f51f0cc711f42f176e74e8529 (diff)
parenta757e8ca0a6f7bb628ac7a57cafa9f0ba5167d51 (diff)
Merge remote-tracking branch 'origin/5.6' into dev
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/controls/data/tst_progressbar.qml15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/auto/controls/data/tst_progressbar.qml b/tests/auto/controls/data/tst_progressbar.qml
index d5ee3e52..086d9ad4 100644
--- a/tests/auto/controls/data/tst_progressbar.qml
+++ b/tests/auto/controls/data/tst_progressbar.qml
@@ -181,4 +181,19 @@ TestCase {
control.destroy()
}
+
+ function test_indeterminate() {
+ skip("skipping until https://codereview.qt-project.org/#/c/145140/ is merged")
+ var control = progressBar.createObject(testCase)
+ verify(control)
+ compare(control.indeterminate, false)
+
+ wait(100)
+ control.indeterminate = true
+ wait(100)
+ // Shouldn't crash...
+ control.indeterminate = false
+
+ control.destroy()
+ }
}