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
1 changed files with 4 additions and 0 deletions

View File

@ -211,6 +211,10 @@ which allows users to view a desktop computing environment.")
`(#: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)))))