summaryrefslogtreecommitdiffstats
path: root/tests/auto/xml
diff options
context:
space:
mode:
authorAssam Boudjelthia <assam.boudjelthia@qt.io>2020-10-13 14:36:18 +0300
committerAssam Boudjelthia <assam.boudjelthia@qt.io>2020-11-04 12:27:49 +0200
commit039d3fe4e884c3680cb21d89deba7857dde1269c (patch)
tree6dac25efb404be03393fa77179086d4850eaee5b /tests/auto/xml
parenta7b6f0391b437e4b1a1d834421edfa78ff2ec14c (diff)
Android: blacklist a list of failing tests for android
We want to re-enable Android tests in QTQAINFRA-3867. However, many tests are failing already preventing that from happening. QTBUG-87025 is currently keeping track (links) to all of those failing tests. The current proposal is to hide those failing tests, and enable Android test running in COIN for other tests. After, that try to fix them one by one, and at the same time we can make sure no more failing tests go unnoticed. Task-number: QTBUG-87025 Change-Id: Ic1fe9fdd167cbcfd99efce9a09c69c344a36bbe4 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'tests/auto/xml')
-rw-r--r--tests/auto/xml/CMakeLists.txt5
-rw-r--r--tests/auto/xml/xml.pro3
2 files changed, 7 insertions, 1 deletions
diff --git a/tests/auto/xml/CMakeLists.txt b/tests/auto/xml/CMakeLists.txt
index fe747649a7..f3365a03ec 100644
--- a/tests/auto/xml/CMakeLists.txt
+++ b/tests/auto/xml/CMakeLists.txt
@@ -1,3 +1,6 @@
# Generated from xml.pro.
-add_subdirectory(dom)
+# QTBUG-87671 # special case
+if(NOT ANDROID)
+ add_subdirectory(dom)
+endif()
diff --git a/tests/auto/xml/xml.pro b/tests/auto/xml/xml.pro
index f111d4a0c8..708cdae016 100644
--- a/tests/auto/xml/xml.pro
+++ b/tests/auto/xml/xml.pro
@@ -2,3 +2,6 @@ TEMPLATE=subdirs
SUBDIRS=\
dom \
+# QTBUG-87671
+android: SUBDIRS -= \
+ dom