summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--distro/base.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/distro/base.scm b/distro/base.scm
index 7bcac56730..e85b927fc3 100644
--- a/distro/base.scm
+++ b/distro/base.scm
@@ -67,9 +67,9 @@ handlers, distributed shared memory, and more.")
((system)
(if (string=? system "i686-cygwin")
'(#:tests? #f) ; work around test failure on Cygwin
- '()))
+ '(#:parallel-tests? #f))) ; test suite fails in parallel
((system cross-system)
- '())))
+ '(#:parallel-tests? #f))))
(inputs `(("libsigsegv" ,libsigsegv) ; headers
("libsigsegv/lib" ,libsigsegv "lib"))) ; library
(home-page "http://www.gnu.org/software/gawk/")