mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 23:36:35 +01:00
gnu: mesa: Fix architecture matching when disabling tests.
* gnu/packages/gl.scm (mesa)[arguments]: Adjust architecture names in custom 'disable-failing-test phase.
This commit is contained in:
parent
36cb285d61
commit
57e59eddfb
1 changed files with 2 additions and 2 deletions
|
@ -365,11 +365,11 @@ (define-public mesa
|
||||||
(add-after 'unpack 'disable-failing-test
|
(add-after 'unpack 'disable-failing-test
|
||||||
(lambda _
|
(lambda _
|
||||||
,@(match (%current-system)
|
,@(match (%current-system)
|
||||||
("powerpc64le"
|
("powerpc64le-linux"
|
||||||
;; Disable some of the llvmpipe tests.
|
;; Disable some of the llvmpipe tests.
|
||||||
`((substitute* "src/gallium/drivers/llvmpipe/lp_test_arit.c"
|
`((substitute* "src/gallium/drivers/llvmpipe/lp_test_arit.c"
|
||||||
(("0\\.5, ") ""))))
|
(("0\\.5, ") ""))))
|
||||||
("powerpc"
|
("powerpc-linux"
|
||||||
;; There are some tests which fail specifically on powerpc.
|
;; There are some tests which fail specifically on powerpc.
|
||||||
`((substitute* '(;; LLVM ERROR: Relocation type not implemented yet!
|
`((substitute* '(;; LLVM ERROR: Relocation type not implemented yet!
|
||||||
"src/gallium/drivers/llvmpipe/meson.build"
|
"src/gallium/drivers/llvmpipe/meson.build"
|
||||||
|
|
Loading…
Reference in a new issue