me
/
guix
Archived
1
0
Fork 0

gnu: qtwayland-5: Disable tst_surface test on aarch64-linux.

* gnu/packages/qt.scm (qtwayland-5) [arguments]
[target-aarch64?]: Disable the tst_surface test.
Maxim Cournoyer 2023-09-17 13:35:16 -04:00
parent 31cb6b923e
commit 9c2b2a0105
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 8 additions and 1 deletions

View File

@ -1789,7 +1789,14 @@ set of plugins for interacting with pulseaudio and GStreamer.")
"m_waitingFrameCallbacks\\.empty\\(\\)\\);")) "m_waitingFrameCallbacks\\.empty\\(\\)\\);"))
"") "")
(("QTRY_COMPARE\\(bufferSpy\\.count\\(\\), 1\\);") (("QTRY_COMPARE\\(bufferSpy\\.count\\(\\), 1\\);")
"")))) ""))
#$@(if (target-aarch64?)
;; The tst_surface::createSubsurface test fails on
;; aarch64 (see:
;; https://bugreports.qt.io/browse/QTBUG-117112).
#~((substitute* "tests/auto/client/client.pro"
((".*surface.*") "")))
#~())))
(add-before 'check 'set-test-environment (add-before 'check 'set-test-environment
(lambda _ (lambda _
;; Do not fail just because /etc/machine-id is missing. ;; Do not fail just because /etc/machine-id is missing.