Skip to content
Snippets Groups Projects
Commit 57fcd224 authored by Sou Bunnbu (宋文武)'s avatar Sou Bunnbu (宋文武)
Browse files

gnu: at-spi2-atk: Enable tests.

* gnu/packages/gtk.scm (at-spi2-atk)[arguments]: Remove #:tests? #f.
  Add #:phases.
parent 13a9e291
No related branches found
No related tags found
No related merge requests found
...@@ -388,15 +388,19 @@ (define-public at-spi2-atk ...@@ -388,15 +388,19 @@ (define-public at-spi2-atk
(base32 (base32
"1y9gfz1iz3wpja7s000f0bmyyvc6im5fcdl6bxwbz0v3qdgc9vvq")))) "1y9gfz1iz3wpja7s000f0bmyyvc6im5fcdl6bxwbz0v3qdgc9vvq"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(replace check
;; Run test-suite under a dbus session.
(lambda _
(zero? (system* "dbus-launch" "make" "check")))))))
(inputs `(("atk" ,atk) (inputs `(("atk" ,atk)
("at-spi2-core" ,at-spi2-core) ("at-spi2-core" ,at-spi2-core)
("dbus" ,dbus) ("dbus" ,dbus)
("glib" ,glib))) ("glib" ,glib)))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config))) `(("pkg-config" ,pkg-config)))
(arguments
`(#:tests? #f)) ; FIXME: droute/droute-test fails; one should disable
; tests in a more fine-grained way.
(synopsis "Assistive Technology Service Provider Interface, ATK bindings") (synopsis "Assistive Technology Service Provider Interface, ATK bindings")
(description (description
"The Assistive Technology Service Provider Interface "The Assistive Technology Service Provider Interface
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment