gnu: spice: Run tests sequentially.

* gnu/packages/spice.scm (spice)[arguments]: Add #:parallel-tests?.
This commit is contained in:
Ludovic Courtès 2018-11-18 11:16:22 +01:00
parent af50b4abc0
commit 8504d19222
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -211,6 +211,10 @@ (define-public spice
`(#:configure-flags
'("--enable-lz4"
"--enable-automated-tests")
;; Several tests appear to be opening the same sockets concurrently.
#:parallel-tests? #f
#:phases (modify-phases %standard-phases
(add-before 'check 'use-empty-ssl-cert-file
(lambda _ (setenv "SSL_CERT_FILE" "/dev/null") #t)))))