public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/, ...
@ 2016-08-30 22:15 Gilles Dartiguelongue
  0 siblings, 0 replies; 2+ messages in thread
From: Gilles Dartiguelongue @ 2016-08-30 22:15 UTC (permalink / raw
  To: gentoo-commits

commit:     5874a2728031228dd169c450e763dd2e93cb288d
Author:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 30 22:14:45 2016 +0000
Commit:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 22:15:14 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5874a272

app-accessibility/at-spi2-atk: re-enable unittests

Tests were failing due to missing files in upstream tarball, see [1].
Add missing multilib dependency on libxml2 as it is needed to configure.

[1] https://bugzilla.gnome.org/show_bug.cgi?id=770615

Package-Manager: portage-2.3.0

 .../at-spi2-atk/at-spi2-atk-2.20.1.ebuild          | 12 ++--
 .../test-collection.xml                            | 20 +++++++
 .../test-document.xml                              |  7 +++
 .../test-editable-text.xml                         |  9 +++
 .../test-hypertext.xml                             |  6 ++
 .../at-spi2-atk-2.20.0-tests-data/test-image.xml   |  7 +++
 .../test-selection.xml                             | 16 +++++
 .../at-spi2-atk-2.20.0-tests-data/test-table.xml   | 70 ++++++++++++++++++++++
 .../at-spi2-atk-2.20.0-tests-data/test-text.xml    |  9 +++
 .../at-spi2-atk-2.20.0-tests-data/test-value.xml   |  6 ++
 10 files changed, 158 insertions(+), 4 deletions(-)

diff --git a/app-accessibility/at-spi2-atk/at-spi2-atk-2.20.1.ebuild b/app-accessibility/at-spi2-atk/at-spi2-atk-2.20.1.ebuild
index 262acfa..e848c4f 100644
--- a/app-accessibility/at-spi2-atk/at-spi2-atk-2.20.1.ebuild
+++ b/app-accessibility/at-spi2-atk/at-spi2-atk-2.20.1.ebuild
@@ -15,9 +15,6 @@ SLOT="2"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="test"
 
-# tests fail on multilib setups
-RESTRICT="test"
-
 COMMON_DEPEND="
 	>=app-accessibility/at-spi2-core-2.17.90[${MULTILIB_USEDEP}]
 	>=dev-libs/atk-2.15.4[${MULTILIB_USEDEP}]
@@ -32,13 +29,20 @@ DEPEND="${COMMON_DEPEND}
 	test? ( >=dev-libs/libxml2-2.9.1 )
 "
 
+src_prepare() {
+	# Upstream forgot to put this in tarball, upstream #770615
+	cp -n "${FILESDIR}"/${PN}-2.20.0-tests-data/*.xml "${S}"/tests/data/ || die
+
+	gnome2_src_prepare
+}
+
 multilib_src_configure() {
 	ECONF_SOURCE=${S} \
 	gnome2_src_configure --enable-p2p $(use_with test tests)
 }
 
 multilib_src_test() {
-	dbus-run-session -- emake -j1 check
+	emake check TESTS_ENVIRONMENT="dbus-run-session"
 }
 
 multilib_src_compile() { gnome2_src_compile; }

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-collection.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-collection.xml
new file mode 100644
index 00000000..7086ede
--- /dev/null
+++ b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-collection.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" ?>
+<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
+	<accessible description="first child" name="obj1" role="alert">
+		<state state_enum="modal"/>
+		<state state_enum="multi-line"/>
+	</accessible>
+	<accessible description="second child" name="obj2" role="animation">
+		<accessible description="first prechild" name="obj2/1" role="arrow">
+			<relation relation_type="2" target_name="obj2"/>
+			<state state_enum="modal"/>
+			<state state_enum="multi-line"/>
+		</accessible>
+		<accessible description="second prechild" name="obj2/2" role="canvas"/>
+	</accessible>
+	<accessible description="third child" name="obj3" role="check box">
+		<state state_enum="modal"/>
+		<state state_enum="multi-line"/>
+		<accessible description="first prechild" name="obj3/1" role="check menu item"/>
+	</accessible>
+</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-document.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-document.xml
new file mode 100644
index 00000000..7363a62
--- /dev/null
+++ b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-document.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" ?>
+<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
+      <accessible description="first child" name="test" role="alert"/>
+      <accessible_document description="image child" name="my_document" role="text">
+         <document page_numer="7" page_no="2"/>
+      </accessible_document>
+</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-editable-text.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-editable-text.xml
new file mode 100644
index 00000000..ae8084c2
--- /dev/null
+++ b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-editable-text.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" ?>
+<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
+	<accessible_editable_text description="first child" name="obj0" role="entry">
+		<text_edit_node text="test text"/>
+	</accessible_editable_text>
+	<accessible_editable_text description="second child" name="obj1" role="entry">
+		<text_edit_node text="second test text"/>
+	</accessible_editable_text>
+</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-hypertext.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-hypertext.xml
new file mode 100644
index 00000000..1b6be6d
--- /dev/null
+++ b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-hypertext.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" ?>
+<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
+	<accessible_hypertext description="first child" name="obj0" role="alert">
+		<hypertext text="This is article about know downhill portals href='dh-zone.com' href='pinkbike.com'" />
+	</accessible_hypertext>
+</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-image.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-image.xml
new file mode 100644
index 00000000..b678ac2
--- /dev/null
+++ b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-image.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" ?>
+<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
+      <accessible description="first child" name="obj1" role="alert"/>
+      <accessible_image description="image child" name="obj0" role="image">
+         <image image_description="image description" width="100" height="50" x="500" y="50" image_extents="png" image_locale="image_locale"/>
+      </accessible_image>
+</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-selection.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-selection.xml
new file mode 100644
index 00000000..2fc1733
--- /dev/null
+++ b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-selection.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" ?>
+<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
+	<accessible_selection description="first child" name="obj1" role="alert">
+		<accessible description="first prechild" name="obj2/1" role="arrow">
+			<state state_enum="selected"/>
+		</accessible>
+		<accessible description="second prechild" name="obj2/2" role="canvas" selected="1">
+			<state state_enum="selected"/>
+		</accessible>
+		<accessible description="first prechild" name="obj2/1" role="arrow"/>
+		<accessible description="second prechild" name="obj2/2" role="canvas"/>
+		<accessible description="first prechild" name="obj3/1" role="check menu item">
+			<state state_enum="selected"/>
+		</accessible>
+	</accessible_selection>
+</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-table.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-table.xml
new file mode 100644
index 00000000..9d6cb50
--- /dev/null
+++ b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-table.xml
@@ -0,0 +1,70 @@
+<?xml version="1.0" ?>
+<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
+	<accessible_table description="first_child" name="obj0" role="table">
+		<accessible description="table caption" name="caption name" role="caption"/>
+		<accessible description="table summary" name="table summary name" role="heading"/>
+		<accessible description="first column" name="col1" role="table column header">
+			<accessible description="first column header" name="column 1 header" role="header"/>
+		</accessible>
+		<accessible description="second column" name="col2" role="table column header">
+			<state state_enum="selected"/>
+			<accessible description="second column header" name="column 2 header" role="header"/>
+		</accessible>
+		<accessible description="third column" name="col3" role="table column header">
+			<accessible description="thrid column header" name="column 3 header" role="header"/>
+		</accessible>
+		<accessible description="first row" name="row1" role="table row header">
+			<state state_enum="selected"/>
+			<accessible description="first row header" name="row 1 header" role="header"/>
+		</accessible>
+		<accessible description="second row" name="row2" role="table row header">
+			<accessible description="second row header" name="row 2 header" role="header"/>
+		</accessible>
+		<accessible description="third row" name="row3" role="table row header">
+			<state state_enum="selected"/>
+			<accessible description="third row header" name="row 3 header" role="header"/>
+		</accessible>
+		<accessible description="fourth row" name="row4" role="table row header">
+			<accessible description="fourth row header" name="row 4 header" role="header"/>
+		</accessible>
+		<accessible_table_cell description="table cell 1" name="cell 0/0" role="table cell">
+			<table_cell cell_x="0" cell_y="0" row_span="2"/>
+		</accessible_table_cell>
+		<accessible_table_cell description="table cell 5" name="cell 1/0" role="table cell">
+			<table_cell cell_x="1" cell_y="0" column_span="3"/>
+		</accessible_table_cell>
+		<accessible_table_cell description="table cell 9" name="cell 2/0" role="table cell">
+			<state state_enum="selected"/>
+			<table_cell cell_x="2" cell_y="0"/>
+		</accessible_table_cell>
+		<accessible_table_cell description="table cell 2" name="cell 0/1" role="table cell">
+			<table_cell cell_x="0" cell_y="1"/>
+		</accessible_table_cell>
+		<accessible_table_cell description="table cell 6" name="cell 1/1" role="table cell">
+			<table_cell cell_x="1" cell_y="1"/>
+		</accessible_table_cell>
+		<accessible_table_cell description="table cell 10" name="cell 2/1" role="table cell">
+			<table_cell cell_x="2" cell_y="1"/>
+		</accessible_table_cell>
+		<accessible_table_cell description="table cell 3" name="cell 0/2" role="table cell">
+			<table_cell cell_x="0" cell_y="2"/>
+		</accessible_table_cell>
+		<accessible_table_cell description="table cell 7" name="cell 1/2" role="table cell">
+			<table_cell cell_x="1" cell_y="2"/>
+		</accessible_table_cell>
+		<accessible_table_cell description="table cell 11" name="cell 2/2" role="table cell">
+			<table_cell cell_x="2" cell_y="2"/>
+		</accessible_table_cell>
+		<accessible_table_cell description="table cell 4" name="cell 0/3" role="table cell">
+			<table_cell cell_x="0" cell_y="3"/>
+		</accessible_table_cell>
+		<accessible_table_cell description="table cell 8" name="cell 1/3" role="table cell">
+			<table_cell cell_x="1" cell_y="3"/>
+		</accessible_table_cell>
+		<accessible_table_cell description="table cell 12" name="cell 2/3" role="table cell">
+			<table_cell cell_x="2" cell_y="3"/>
+		</accessible_table_cell>
+	</accessible_table>
+</accessible>
+
+

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-text.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-text.xml
new file mode 100644
index 00000000..ab72522
--- /dev/null
+++ b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-text.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" ?>
+<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
+	<accessible_text description="first child" name="obj0" role="text">
+		<text_node text="text0 it works!." x="100" y="33" width="110" height="30" bold_text="on" underline_text="off"/>
+	</accessible_text>
+	<accessible_text description="second child" name="obj1" role="text">
+		<text_node text="First sentence./n Second sentence." x="66" y="44" width="550" height="40" bold_text="off" underline_text="off"/>
+	</accessible_text>
+</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-value.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-value.xml
new file mode 100644
index 00000000..83172d5
--- /dev/null
+++ b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-value.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" ?>
+<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
+	<accessible_value description="first child" name="obj0" role="alert">
+		<value_node min="1.1" current="2.1" max="3.1" step="0.1"/>
+	</accessible_value>
+</accessible>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/, ...
@ 2019-03-29 23:27 Mart Raudsepp
  0 siblings, 0 replies; 2+ messages in thread
From: Mart Raudsepp @ 2019-03-29 23:27 UTC (permalink / raw
  To: gentoo-commits

commit:     972b1e16b88b5e1da425ab028a96dbd91b450098
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 29 22:48:06 2019 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Fri Mar 29 22:48:06 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=972b1e16

app-accessibility/at-spi2-atk: remove old

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 app-accessibility/at-spi2-atk/Manifest             |  2 -
 .../at-spi2-atk/at-spi2-atk-2.24.1.ebuild          | 48 ---------------
 .../at-spi2-atk/at-spi2-atk-2.30.0.ebuild          | 41 -------------
 .../test-collection.xml                            | 20 -------
 .../test-document.xml                              |  7 ---
 .../test-editable-text.xml                         |  9 ---
 .../test-hypertext.xml                             |  6 --
 .../at-spi2-atk-2.20.0-tests-data/test-image.xml   |  7 ---
 .../test-selection.xml                             | 16 -----
 .../at-spi2-atk-2.20.0-tests-data/test-table.xml   | 70 ----------------------
 .../at-spi2-atk-2.20.0-tests-data/test-text.xml    |  9 ---
 .../at-spi2-atk-2.20.0-tests-data/test-value.xml   |  6 --
 12 files changed, 241 deletions(-)

diff --git a/app-accessibility/at-spi2-atk/Manifest b/app-accessibility/at-spi2-atk/Manifest
index 3cb4d25c457..f2a27f9d2c2 100644
--- a/app-accessibility/at-spi2-atk/Manifest
+++ b/app-accessibility/at-spi2-atk/Manifest
@@ -1,4 +1,2 @@
-DIST at-spi2-atk-2.24.1.tar.xz 308576 BLAKE2B 92b96c54cd5a2dbd8a3dddbaa3188b3396ef8e4631cc9438e4ba57da27672d509babae3415c66d2c6afc74855ff0536d4cc6f24a8cecf66478021d350b3572a1 SHA512 5dbc186c7ea4f7f34aa0acaf90f683e549162caa274ba5b5818ae9992b52f1b475923d9818870978e87e3dacdf1018db31810d2d53b39bb4f068bcb64a423f23
 DIST at-spi2-atk-2.26.2.tar.xz 322800 BLAKE2B 108a01fd8c16816d9953ad42721080dd6dcb9f75c95c412387d7f54920998c66eb5855eb859e8e00096a47b387d05779691887a7717d31f4c70681d69a9c8266 SHA512 f938b8e2b999fcdfa13e9433bd13c39430bae2ceae0c664a24caccc6af522947bf73de02de3c359807f5370a85961193df2ba24b193b60b915c61828ea747bb2
-DIST at-spi2-atk-2.30.0.tar.xz 94824 BLAKE2B 65f8abb034a610e8aaa72c4d0e3c93fa03f6737cbf8bff28c885c654ba3fe98e8750e6398326e47069f12d33f75eae729cbafdfca31a3a0ab7b233ba3f8a4c58 SHA512 d7a02c347e31d78da81455cff77b44ab6d9e11add8d9457fba6a6b354cef731ab73e8a83060c150f3ef3d5191bfbc649618360a61c9826816b1aafb3e2bea7d5
 DIST at-spi2-atk-2.30.1.tar.xz 94812 BLAKE2B fe3ef77e749bef2300219fe32586ac0b871d06dce708ce8b7b57356a1fa17041c3f7b788e3e6d6b5f89dc97c3e8d43a9d1eb897ed8fbaac954f042421aef68b6 SHA512 862cccb65d2a8a7df4e899e4f53742535389a0efa0a75c936b52e68690c07e206b19d8308f0910cddb71bda0d803012d613f6959329ae43c411d1314062b7018

diff --git a/app-accessibility/at-spi2-atk/at-spi2-atk-2.24.1.ebuild b/app-accessibility/at-spi2-atk/at-spi2-atk-2.24.1.ebuild
deleted file mode 100644
index cf70707dd34..00000000000
--- a/app-accessibility/at-spi2-atk/at-spi2-atk-2.24.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 multilib-minimal virtualx
-
-DESCRIPTION="Gtk module for bridging AT-SPI to Atk"
-HOMEPAGE="https://wiki.gnome.org/Accessibility"
-
-LICENSE="LGPL-2+"
-SLOT="2"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
-IUSE="test"
-
-COMMON_DEPEND="
-	>=app-accessibility/at-spi2-core-2.17.90[${MULTILIB_USEDEP}]
-	>=dev-libs/atk-2.15.4[${MULTILIB_USEDEP}]
-	>=dev-libs/glib-2.32:2[${MULTILIB_USEDEP}]
-	>=sys-apps/dbus-1.5[${MULTILIB_USEDEP}]
-"
-RDEPEND="${COMMON_DEPEND}
-	!<gnome-extra/at-spi-1.32.0-r1
-"
-DEPEND="${COMMON_DEPEND}
-	virtual/pkgconfig[${MULTILIB_USEDEP}]
-	test? ( >=dev-libs/libxml2-2.9.1 )
-"
-
-src_prepare() {
-	# Upstream forgot to put this in tarball, upstream #770615
-	cp -n "${FILESDIR}"/${PN}-2.20.0-tests-data/*.xml "${S}"/tests/data/ || die
-
-	gnome2_src_prepare
-}
-
-multilib_src_configure() {
-	ECONF_SOURCE=${S} \
-	gnome2_src_configure --enable-p2p $(use_with test tests)
-}
-
-multilib_src_test() {
-	virtx emake check TESTS_ENVIRONMENT="dbus-run-session"
-}
-
-multilib_src_compile() { gnome2_src_compile; }
-multilib_src_install() { gnome2_src_install; }

diff --git a/app-accessibility/at-spi2-atk/at-spi2-atk-2.30.0.ebuild b/app-accessibility/at-spi2-atk/at-spi2-atk-2.30.0.ebuild
deleted file mode 100644
index 3af77c5c498..00000000000
--- a/app-accessibility/at-spi2-atk/at-spi2-atk-2.30.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome.org meson multilib-minimal virtualx xdg
-
-DESCRIPTION="Gtk module for bridging AT-SPI to Atk"
-HOMEPAGE="https://wiki.gnome.org/Accessibility"
-
-LICENSE="LGPL-2+"
-SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
-IUSE="test"
-
-RDEPEND="
-	>=sys-apps/dbus-1.5[${MULTILIB_USEDEP}]
-	>=dev-libs/glib-2.32:2[${MULTILIB_USEDEP}]
-	>=dev-libs/atk-2.30.0[${MULTILIB_USEDEP}]
-	>=app-accessibility/at-spi2-core-2.30.0[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig[${MULTILIB_USEDEP}]
-	test? ( >=dev-libs/libxml2-2.9.1 )
-"
-
-multilib_src_configure() {
-	meson_src_configure
-}
-
-multilib_src_compile() {
-	meson_src_compile
-}
-
-multilib_src_test() {
-	virtx dbus-run-session meson test -C "${BUILD_DIR}" || die 'tests failed'
-}
-
-multilib_src_install() {
-	meson_src_install
-}

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-collection.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-collection.xml
deleted file mode 100644
index 7086ede8554..00000000000
--- a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-collection.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" ?>
-<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
-	<accessible description="first child" name="obj1" role="alert">
-		<state state_enum="modal"/>
-		<state state_enum="multi-line"/>
-	</accessible>
-	<accessible description="second child" name="obj2" role="animation">
-		<accessible description="first prechild" name="obj2/1" role="arrow">
-			<relation relation_type="2" target_name="obj2"/>
-			<state state_enum="modal"/>
-			<state state_enum="multi-line"/>
-		</accessible>
-		<accessible description="second prechild" name="obj2/2" role="canvas"/>
-	</accessible>
-	<accessible description="third child" name="obj3" role="check box">
-		<state state_enum="modal"/>
-		<state state_enum="multi-line"/>
-		<accessible description="first prechild" name="obj3/1" role="check menu item"/>
-	</accessible>
-</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-document.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-document.xml
deleted file mode 100644
index 7363a622e76..00000000000
--- a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-document.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" ?>
-<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
-      <accessible description="first child" name="test" role="alert"/>
-      <accessible_document description="image child" name="my_document" role="text">
-         <document page_numer="7" page_no="2"/>
-      </accessible_document>
-</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-editable-text.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-editable-text.xml
deleted file mode 100644
index ae8084c2cc4..00000000000
--- a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-editable-text.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" ?>
-<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
-	<accessible_editable_text description="first child" name="obj0" role="entry">
-		<text_edit_node text="test text"/>
-	</accessible_editable_text>
-	<accessible_editable_text description="second child" name="obj1" role="entry">
-		<text_edit_node text="second test text"/>
-	</accessible_editable_text>
-</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-hypertext.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-hypertext.xml
deleted file mode 100644
index 1b6be6d4b1f..00000000000
--- a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-hypertext.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" ?>
-<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
-	<accessible_hypertext description="first child" name="obj0" role="alert">
-		<hypertext text="This is article about know downhill portals href='dh-zone.com' href='pinkbike.com'" />
-	</accessible_hypertext>
-</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-image.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-image.xml
deleted file mode 100644
index b678ac25074..00000000000
--- a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-image.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" ?>
-<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
-      <accessible description="first child" name="obj1" role="alert"/>
-      <accessible_image description="image child" name="obj0" role="image">
-         <image image_description="image description" width="100" height="50" x="500" y="50" image_extents="png" image_locale="image_locale"/>
-      </accessible_image>
-</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-selection.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-selection.xml
deleted file mode 100644
index 2fc17333449..00000000000
--- a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-selection.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" ?>
-<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
-	<accessible_selection description="first child" name="obj1" role="alert">
-		<accessible description="first prechild" name="obj2/1" role="arrow">
-			<state state_enum="selected"/>
-		</accessible>
-		<accessible description="second prechild" name="obj2/2" role="canvas" selected="1">
-			<state state_enum="selected"/>
-		</accessible>
-		<accessible description="first prechild" name="obj2/1" role="arrow"/>
-		<accessible description="second prechild" name="obj2/2" role="canvas"/>
-		<accessible description="first prechild" name="obj3/1" role="check menu item">
-			<state state_enum="selected"/>
-		</accessible>
-	</accessible_selection>
-</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-table.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-table.xml
deleted file mode 100644
index 9d6cb502d74..00000000000
--- a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-table.xml
+++ /dev/null
@@ -1,70 +0,0 @@
-<?xml version="1.0" ?>
-<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
-	<accessible_table description="first_child" name="obj0" role="table">
-		<accessible description="table caption" name="caption name" role="caption"/>
-		<accessible description="table summary" name="table summary name" role="heading"/>
-		<accessible description="first column" name="col1" role="table column header">
-			<accessible description="first column header" name="column 1 header" role="header"/>
-		</accessible>
-		<accessible description="second column" name="col2" role="table column header">
-			<state state_enum="selected"/>
-			<accessible description="second column header" name="column 2 header" role="header"/>
-		</accessible>
-		<accessible description="third column" name="col3" role="table column header">
-			<accessible description="thrid column header" name="column 3 header" role="header"/>
-		</accessible>
-		<accessible description="first row" name="row1" role="table row header">
-			<state state_enum="selected"/>
-			<accessible description="first row header" name="row 1 header" role="header"/>
-		</accessible>
-		<accessible description="second row" name="row2" role="table row header">
-			<accessible description="second row header" name="row 2 header" role="header"/>
-		</accessible>
-		<accessible description="third row" name="row3" role="table row header">
-			<state state_enum="selected"/>
-			<accessible description="third row header" name="row 3 header" role="header"/>
-		</accessible>
-		<accessible description="fourth row" name="row4" role="table row header">
-			<accessible description="fourth row header" name="row 4 header" role="header"/>
-		</accessible>
-		<accessible_table_cell description="table cell 1" name="cell 0/0" role="table cell">
-			<table_cell cell_x="0" cell_y="0" row_span="2"/>
-		</accessible_table_cell>
-		<accessible_table_cell description="table cell 5" name="cell 1/0" role="table cell">
-			<table_cell cell_x="1" cell_y="0" column_span="3"/>
-		</accessible_table_cell>
-		<accessible_table_cell description="table cell 9" name="cell 2/0" role="table cell">
-			<state state_enum="selected"/>
-			<table_cell cell_x="2" cell_y="0"/>
-		</accessible_table_cell>
-		<accessible_table_cell description="table cell 2" name="cell 0/1" role="table cell">
-			<table_cell cell_x="0" cell_y="1"/>
-		</accessible_table_cell>
-		<accessible_table_cell description="table cell 6" name="cell 1/1" role="table cell">
-			<table_cell cell_x="1" cell_y="1"/>
-		</accessible_table_cell>
-		<accessible_table_cell description="table cell 10" name="cell 2/1" role="table cell">
-			<table_cell cell_x="2" cell_y="1"/>
-		</accessible_table_cell>
-		<accessible_table_cell description="table cell 3" name="cell 0/2" role="table cell">
-			<table_cell cell_x="0" cell_y="2"/>
-		</accessible_table_cell>
-		<accessible_table_cell description="table cell 7" name="cell 1/2" role="table cell">
-			<table_cell cell_x="1" cell_y="2"/>
-		</accessible_table_cell>
-		<accessible_table_cell description="table cell 11" name="cell 2/2" role="table cell">
-			<table_cell cell_x="2" cell_y="2"/>
-		</accessible_table_cell>
-		<accessible_table_cell description="table cell 4" name="cell 0/3" role="table cell">
-			<table_cell cell_x="0" cell_y="3"/>
-		</accessible_table_cell>
-		<accessible_table_cell description="table cell 8" name="cell 1/3" role="table cell">
-			<table_cell cell_x="1" cell_y="3"/>
-		</accessible_table_cell>
-		<accessible_table_cell description="table cell 12" name="cell 2/3" role="table cell">
-			<table_cell cell_x="2" cell_y="3"/>
-		</accessible_table_cell>
-	</accessible_table>
-</accessible>
-
-

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-text.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-text.xml
deleted file mode 100644
index ab72522afd5..00000000000
--- a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-text.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" ?>
-<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
-	<accessible_text description="first child" name="obj0" role="text">
-		<text_node text="text0 it works!." x="100" y="33" width="110" height="30" bold_text="on" underline_text="off"/>
-	</accessible_text>
-	<accessible_text description="second child" name="obj1" role="text">
-		<text_node text="First sentence./n Second sentence." x="66" y="44" width="550" height="40" bold_text="off" underline_text="off"/>
-	</accessible_text>
-</accessible>

diff --git a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-value.xml b/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-value.xml
deleted file mode 100644
index 83172d5f8b8..00000000000
--- a/app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/test-value.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" ?>
-<accessible description="Root of the accessible tree" name="root_object" role="accelerator label">
-	<accessible_value description="first child" name="obj0" role="alert">
-		<value_node min="1.1" current="2.1" max="3.1" step="0.1"/>
-	</accessible_value>
-</accessible>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-03-29 23:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-30 22:15 [gentoo-commits] repo/gentoo:master commit in: app-accessibility/at-spi2-atk/files/at-spi2-atk-2.20.0-tests-data/, Gilles Dartiguelongue
  -- strict thread matches above, loose matches on Subject: below --
2019-03-29 23:27 Mart Raudsepp

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox