diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-07-07 16:51:13 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-07-07 16:51:13 +0200 |
commit | 03f9609ad9a8118b48bef7869e48c3afaae5f6ce (patch) | |
tree | f2c799924b261bfd56145a03fe24dfc7ad74ceb6 /distro | |
parent | fa14d96e6fc7e8c905f862c65298f6c553ac3657 (diff) | |
download | guix-03f9609ad9a8118b48bef7869e48c3afaae5f6ce.tar.gz guix-03f9609ad9a8118b48bef7869e48c3afaae5f6ce.zip |
distro: gawk: Disable parallel tests.
* distro/base.scm (gawk): Explicitly disable parallel tests.
Diffstat (limited to 'distro')
-rw-r--r-- | distro/base.scm | 4 |
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/") |