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

* gnu/packages/qt.scm (qtwayland-5) [arguments]
[target-aarch64?]: Disable the tst_surface test.
This commit is contained in:
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

View file

@ -1789,7 +1789,14 @@ (define-public qtwayland-5
"m_waitingFrameCallbacks\\.empty\\(\\)\\);"))
"")
(("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
(lambda _
;; Do not fail just because /etc/machine-id is missing.