me
/
guix
Archived
1
0
Fork 0

gnu: mesa: Skip additional test on powerpc-linux.

* gnu/packages/gl.scm (mesa)[arguments]: Add another substitution for
powerpc-linux to custom 'disable-failing-test phase.
Efraim Flashner 2021-08-09 14:16:01 +03:00
parent 57e59eddfb
commit 2e16a22301
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 1 deletions

View File

@ -381,7 +381,10 @@ also known as DXTn or DXTC) for Mesa.")
(("'u_format_test', ") "")) (("'u_format_test', ") ""))
;; It is only this portion of the test which fails. ;; It is only this portion of the test which fails.
(substitute* "src/mesa/main/tests/meson.build" (substitute* "src/mesa/main/tests/meson.build"
((".*mesa_formats.*") "")))) ((".*mesa_formats.*") ""))
;; This test times out and receives SIGTERM.
(substitute* "src/amd/common/meson.build"
(("and not with_platform_windows") "and with_platform_windows"))))
("i686-linux" ("i686-linux"
;; Disable new test from Mesa 19 that fails on i686. Upstream ;; Disable new test from Mesa 19 that fails on i686. Upstream
;; report: <https://bugs.freedesktop.org/show_bug.cgi?id=110612>. ;; report: <https://bugs.freedesktop.org/show_bug.cgi?id=110612>.