diff options
author | Kari Oikarinen <kari.oikarinen@qt.io> | 2018-02-20 15:04:15 +0200 |
---|---|---|
committer | Kari Oikarinen <kari.oikarinen@qt.io> | 2018-02-21 11:01:01 +0000 |
commit | 31c3ce8ee7d53fad07234ea4b3ba4875b826dd21 (patch) | |
tree | d1486c331d543a4f23262ecab603558f3dee6c8c /tests | |
parent | 6a5215ed8cc445d23532be59790a2e3d65d851da (diff) | |
download | qtlocation-31c3ce8ee7d53fad07234ea4b3ba4875b826dd21.tar.gz |
Fix declarative_ui::MouseArea::test_enabled failing in CI
The test in the headline failed in CI on first runs, but succeeded in repeats
when it is run alone. This was because the previous test
declarative_ui::MouseArea::test_basic_press_release led to a situation where the
mouseClick() does not actually lead to a click event.
QTBUG-66534 was created to track that bug. Skip the part of the test that leads
to the failure for now.
Task-number: QTBUG-66533
Task-number: QTBUG-66534
Task-number: QTBUG-66216
Change-Id: Iadf3844e97603414594aceafcb1f36cf40653073
Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative_ui/tst_map_mouse.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative_ui/tst_map_mouse.qml b/tests/auto/declarative_ui/tst_map_mouse.qml index dd9de73a..b3f265a0 100644 --- a/tests/auto/declarative_ui/tst_map_mouse.qml +++ b/tests/auto/declarative_ui/tst_map_mouse.qml @@ -523,7 +523,7 @@ Item { compare(mouseLowerPressedSpy.count, 1) compare(mouseLowerReleasedSpy.count, 1) - + skip("Makes other tests fail due to QTBUG-66534") compare(mouseOverlapperPressedSpy.count, 0) mousePress(map, 55, 75) compare(mouseUpperPressedSpy.count, 2) |