summaryrefslogtreecommitdiff
path: root/gnu/packages/debug.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2016-09-06 15:53:57 +0300
committerEfraim Flashner <efraim@flashner.co.il>2016-09-06 15:53:57 +0300
commit83723949a4e5f90176f8863dd08fd9c7f36bce75 (patch)
tree76fdc9814ac00759c3f5a4508fb55dd2487c8fec /gnu/packages/debug.scm
parent6779b9322253ba232d5d07e337d2d0933ecfdf2f (diff)
gnu: Fix pre-2.7.0 qemu builds.
This is a follow-up to 43bec6d0. * gnu/packages/debug.scm (qemu-2.3.0), gnu/packages/grub.scm (qemu-for-tests)[arguments]: Remove the 'disable-test-qga phase.
Diffstat (limited to 'gnu/packages/debug.scm')
-rw-r--r--gnu/packages/debug.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm
index 9da8885fb34..82a8090d0c0 100644
--- a/gnu/packages/debug.scm
+++ b/gnu/packages/debug.scm
@@ -161,7 +161,10 @@ tools that process C/C++ code.")
161 ;; XXX: Disable tests because of GTester's rejection of duplicate test 161 ;; XXX: Disable tests because of GTester's rejection of duplicate test
162 ;; names, which wasn't addressed in this version of QEMU. 162 ;; names, which wasn't addressed in this version of QEMU.
163 `(#:tests? #f 163 `(#:tests? #f
164 ,@(package-arguments qemu-minimal))))) 164 ,@(substitute-keyword-arguments (package-arguments qemu-minimal)
165 ((#:phases phases)
166 ;; We disable the tests so we skip the phase disabling the qga test.
167 `(modify-phases ,phases (delete 'disable-test-qga))))))))
165 168
166(define-public american-fuzzy-lop 169(define-public american-fuzzy-lop
167 (let ((machine (match (or (%current-target-system) 170 (let ((machine (match (or (%current-target-system)