Disable accessibility-dump test (aka a11ytests)

It works by comparing a dump of the a11y widget tree with a known-good
version, but that seems to vary unpredictably according to some unknown
factor. Upstream's CI currently disables all the a11y tests, so we can't
expect this to be reliable.
This commit is contained in:
Simon McVittie
2019-07-17 17:23:13 +01:00
parent 9cf0978bcd
commit d5465be992
3 changed files with 41 additions and 0 deletions

6
debian/changelog vendored
View File

@ -14,6 +14,12 @@ gtk+3.0 (3.24.10-1) UNRELEASED; urgency=medium
* d/p/docs-Add-gtk_file_chooser_add_choice-and-related-function.patch, * d/p/docs-Add-gtk_file_chooser_add_choice-and-related-function.patch,
d/p/Fix-a-string-leak.patch: d/p/Fix-a-string-leak.patch:
Add post-release fixes from upstream gtk-3-24 branch Add post-release fixes from upstream gtk-3-24 branch
* d/p/Disable-accessibility-dump-aka-a11ytests-test.patch:
Disable accessibility-dump test (aka a11ytests).
It works by comparing a dump of the a11y widget tree with a known-good
version, but that seems to vary unpredictably according to some unknown
factor. Upstream's CI currently disables all the a11y tests, so we can't
expect this to be reliable.
-- Simon McVittie <smcv@debian.org> Wed, 17 Jul 2019 10:00:01 +0100 -- Simon McVittie <smcv@debian.org> Wed, 17 Jul 2019 10:00:01 +0100

View File

@ -0,0 +1,34 @@
From: Simon McVittie <smcv@debian.org>
Date: Wed, 17 Jul 2019 17:20:23 +0100
Subject: Disable accessibility-dump (aka a11ytests) test
This test seems to be unreliable, with its results depending on
unknown environmental factors. Upstream disable it for CI purposes,
so we should probably do the same.
Forwarded: no
---
testsuite/a11y/Makefile.am | 3 ---
1 file changed, 3 deletions(-)
diff --git a/testsuite/a11y/Makefile.am b/testsuite/a11y/Makefile.am
index 73519e9..9b475b4 100644
--- a/testsuite/a11y/Makefile.am
+++ b/testsuite/a11y/Makefile.am
@@ -28,8 +28,6 @@ TESTS_ENVIRONMENT = \
GTK_CSD=1 \
G_ENABLE_DIAGNOSTIC=0
-TEST_PROGS += accessibility-dump
-
TEST_PROGS += tree-performance
TEST_PROGS += text
@@ -89,7 +87,6 @@ testdata = \
$(NULL)
test_in_files = \
- a11ytests.test.in \
a11ychildren.test.in \
a11ytree.test.in \
a11yvalue.test.in \

View File

@ -9,3 +9,4 @@ reftest-known-fail.patch
Don-t-test-default-constructed-GdkPixbuf-properties.patch Don-t-test-default-constructed-GdkPixbuf-properties.patch
gdk-Generate-gdkenumtypes.-ch-in-the-builddir.patch gdk-Generate-gdkenumtypes.-ch-in-the-builddir.patch
gdk-Don-t-distribute-generated-files-in-tarballs.patch gdk-Don-t-distribute-generated-files-in-tarballs.patch
Disable-accessibility-dump-aka-a11ytests-test.patch