me
/
guix
Archived
1
0
Fork 0

gnu: dino: Run tests.

* gnu/packages/messaging.scm (dino)[arguments]<#:tests?>: Drop.
<#:configure-flags>: Add “-DBUILD_TESTS=true”.
<#:phases>: Replace ‘check’ with manual invocations of the test binaries.
master
Liliana Marie Prikler 2022-07-02 13:33:07 +02:00
parent fe111f404d
commit aaf4694b9f
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 8 additions and 2 deletions

View File

@ -1380,7 +1380,7 @@ Encryption to Gajim.")
(build-system cmake-build-system)
(outputs '("out" "debug"))
(arguments
(list #:tests? #f
(list #:configure-flags #~(list "-DBUILD_TESTS=true")
#:parallel-build? #f ; not supported
#:modules '((guix build cmake-build-system)
((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
@ -1399,7 +1399,13 @@ Encryption to Gajim.")
(wrap-program dino
`("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))))))
(add-after 'install 'glib-or-gtk-wrap
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "./libdino-test")
(invoke "./signal-protocol-vala-test")
(invoke "./xmpp-vala-test")))))))
(native-inputs
(list gettext-minimal
`(,glib "bin")