diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-03-19 14:31:54 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-03-19 16:54:33 +0200 |
commit | fe7c6f91dda727aa87e283e4303d6b93addee955 (patch) | |
tree | a9876bb80f39b7a10b24abc68cd2bc5b4adc9e77 /gnu | |
parent | c022edf6f48b02df45616c0adb35238f1dc13dac (diff) | |
download | patches-fe7c6f91dda727aa87e283e4303d6b93addee955.tar patches-fe7c6f91dda727aa87e283e4303d6b93addee955.tar.gz |
gnu: libdrm: Extend test timeout on armhf-linux.
* gnu/packages/xdisorg.scm (libdrm)[arguments]: Replace the 'check phase
on armhf-linux.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xdisorg.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 8cf0365fc2..377c5d1a30 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -401,7 +401,14 @@ rasterisation.") "-Detnaviv=true" "-Dtegra=true" "-Dfreedreno-kgsl=true")) - (_ '()))))) + (_ '()))) + ,@(if (string=? (%current-system) "armhf-linux") + '(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ + (invoke "meson" "test" "--timeout-multiplier" "5"))))) + '()))) (inputs `(("libpciaccess" ,libpciaccess))) (native-inputs |