mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: povray: Fix test run requiring interaction.
[[PGP Signed Part:No public key for 3DECC105F5DD2382 created at 2024-10-23T14:00:24+0200 using RSA]] The test render required pressing a key after it was done, which caused the package build to get stuck. Also disable the render display window, which did not cause issues but was pointless. * gnu/packages/graphics.scm (povray)[args]: Patch test render not to pause nor display a window. Change-Id: Ia9527b3a67896972b399464b97dda464365d41ea Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
abda22ecb1
commit
a857a58d65
1 changed files with 4 additions and 1 deletions
|
@ -37,6 +37,7 @@
|
|||
;;; Copyright © 2023 David Thompson <dthompson2@worcester.edu>
|
||||
;;; Copyright © 2023 Eric Bavier <bavier@posteo.net>
|
||||
;;; Copyright © 2023, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||
;;; Copyright © 2024 Ivan Vilata-i-Balaguer <ivan@selidor.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1642,7 +1643,9 @@ in Julia).")
|
|||
(setenv "HOME" (getcwd))
|
||||
(with-directory-excursion "unix"
|
||||
(substitute* "prebuild.sh"
|
||||
(("/bin/sh") (which "sh")))
|
||||
(("/bin/sh") (which "sh"))
|
||||
;; Make test run non-interactive.
|
||||
(("biscuit.pov -f \\+d \\+p \\+v") "biscuit.pov -f +v"))
|
||||
(invoke "sh" "prebuild.sh"))))
|
||||
;; The bootstrap script is run by the prebuild script in the
|
||||
;; "run-prebuild" phase.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue