diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-09-18 08:54:05 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-09-19 23:22:45 -0400 |
commit | 710fd17ad5ccc55d61b483f90cd1e26d015b4bcc (patch) | |
tree | 8f40e030526d73ba42c232d2876e8892515cc5ee /gnu/packages | |
parent | 229091385aa146aec36e48fccc341c69cd316014 (diff) | |
download | guix-710fd17ad5ccc55d61b483f90cd1e26d015b4bcc.tar.gz |
gnu: qemu: Enable parallel tests.
I've built QEMU 5.1.0 tens of times on a 24 logical core machines, and haven't encountered a failure. Tentatively re-enabling parallel tests. * gnu/packages/virtualization.scm (qemu)[arguments]: Drop the \#:parallel-tests? #f argument. [phases]{configure}: Fix indentation.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/virtualization.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index c77bc39da9..12117ec462 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -140,11 +140,7 @@ "1rd41wwlvp0vpialjp2czs6i3lsc338xc72l3zkbb7ixjfslw5y9")))) (build-system gnu-build-system) (arguments - `(;; Running tests in parallel can occasionally lead to failures, like: - ;; boot_sector_test: assertion failed (signature == SIGNATURE): (0x00000000 == 0x0000dead) - #:parallel-tests? #f - - ;; FIXME: Disable tests on i686 to work around + `(;; FIXME: Disable tests on i686 to work around ;; <https://bugs.gnu.org/40527>. #:tests? ,(or (%current-target-system) (not (string=? "i686-linux" (%current-system)))) |