summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAssam Boudjelthia <assam.boudjelthia@qt.io>2022-04-19 19:46:01 +0300
committerAssam Boudjelthia <assam.boudjelthia@qt.io>2022-04-21 12:40:14 +0000
commit8623d04148129af1394328685e5c655247cafb6e (patch)
tree147a5c4e536eb5ebab35baca7eb7512308285a2a
parent979d7a7d91409e2907e89d067748044931b7872a (diff)
Android: ignore some failing tests in qtcharts
Ignore those tests to allow enalbing CI tests and fix them one by one after that. Pick-to: 6.2 6.3 Task-number: QTBUG-102723 Task-number: QTBUG-102722 Task-number: QTBUG-102725 Change-Id: I38aff97e7c73460ee27cd1674180e9e95b4a9ae1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
-rw-r--r--tests/auto/qareaseries/BLACKLIST4
-rw-r--r--tests/auto/qbarseries/tst_qbarseries.cpp3
-rw-r--r--tests/auto/qml/tst_qml.cpp3
-rw-r--r--tests/auto/qpieseries/BLACKLIST9
-rw-r--r--tests/auto/qpieslice/BLACKLIST9
5 files changed, 28 insertions, 0 deletions
diff --git a/tests/auto/qareaseries/BLACKLIST b/tests/auto/qareaseries/BLACKLIST
index 2f0ae955..996d7802 100644
--- a/tests/auto/qareaseries/BLACKLIST
+++ b/tests/auto/qareaseries/BLACKLIST
@@ -1,2 +1,6 @@
[dynamicEdgeSeriesChange]
msvc-2019
+# QTBUG-102722
+android
+[areaSeries]
+android
diff --git a/tests/auto/qbarseries/tst_qbarseries.cpp b/tests/auto/qbarseries/tst_qbarseries.cpp
index 3ab97a58..e31b8a6f 100644
--- a/tests/auto/qbarseries/tst_qbarseries.cpp
+++ b/tests/auto/qbarseries/tst_qbarseries.cpp
@@ -649,6 +649,9 @@ void tst_QBarSeries::mousehovered()
{
QFETCH(uint, labelsPosition);
QFETCH(bool, labelsVisible);
+#ifdef Q_OS_ANDROID
+ QSKIP("Android emulator doesn't have a mouse enabled");
+#endif
QBarSeries* series = new QBarSeries();
series->setLabelsVisible(labelsVisible);
diff --git a/tests/auto/qml/tst_qml.cpp b/tests/auto/qml/tst_qml.cpp
index f6f63ed6..cfe13128 100644
--- a/tests/auto/qml/tst_qml.cpp
+++ b/tests/auto/qml/tst_qml.cpp
@@ -98,6 +98,9 @@ QString tst_qml::imports_2_1()
void tst_qml::initTestCase()
{
+#ifdef Q_OS_ANDROID
+ QSKIP("The test doesn't package resources properly to Android (QTBUG-102725)");
+#endif
}
void tst_qml::cleanupTestCase()
diff --git a/tests/auto/qpieseries/BLACKLIST b/tests/auto/qpieseries/BLACKLIST
new file mode 100644
index 00000000..7fd7b1b2
--- /dev/null
+++ b/tests/auto/qpieseries/BLACKLIST
@@ -0,0 +1,9 @@
+# QTBUG-102723
+[clickedSignal]
+android
+[pressedSignal]
+android
+[releasedSignal]
+android
+[doubleClickedSignal]
+android
diff --git a/tests/auto/qpieslice/BLACKLIST b/tests/auto/qpieslice/BLACKLIST
new file mode 100644
index 00000000..7fd7b1b2
--- /dev/null
+++ b/tests/auto/qpieslice/BLACKLIST
@@ -0,0 +1,9 @@
+# QTBUG-102723
+[clickedSignal]
+android
+[pressedSignal]
+android
+[releasedSignal]
+android
+[doubleClickedSignal]
+android