diff options
| author | Ryan Sundberg via Guix-patches via <guix-patches@gnu.org> | 2024-12-01 21:29:39 -0800 |
|---|---|---|
| committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-12-07 09:33:21 +0800 |
| commit | 747aa1b2641ebd543719318a3395aa10b1111941 (patch) | |
| tree | c7da85bf885010413853f0d57b8bdd6149d73c74 /gnu/packages/code.scm | |
| parent | 31e2d4f87e82667355f00a4224468ea5951bfea4 (diff) | |
gnu: lcov: disable parallel tests
`make check` is not reliable for lcov when run in parallel
(e.g. `make -j 24 check`). Disable parallelism for the test suite.
* gnu/packages/code (lcov): Set #:parallel-tests? #f
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
Change-Id: Ibb3618c4786dfbb50b90e725297947458115347c
Diffstat (limited to 'gnu/packages/code.scm')
| -rw-r--r-- | gnu/packages/code.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index 04ca4dfd6b2..2ad1d8616a9 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm | |||
| @@ -556,6 +556,9 @@ expressions, and its ability to generate emacs-style TAGS files.") | |||
| 556 | '(#:test-target "test" | 556 | '(#:test-target "test" |
| 557 | #:make-flags (list (string-append "PREFIX=" | 557 | #:make-flags (list (string-append "PREFIX=" |
| 558 | (assoc-ref %outputs "out"))) | 558 | (assoc-ref %outputs "out"))) |
| 559 | ;; This test suite has race conditions in its scripts which make it | ||
| 560 | ;; unreliable when run in parallel. | ||
| 561 | #:parallel-tests? #f | ||
| 559 | #:phases | 562 | #:phases |
| 560 | (modify-phases %standard-phases | 563 | (modify-phases %standard-phases |
| 561 | (add-after 'unpack 'patch-references-to-commands | 564 | (add-after 'unpack 'patch-references-to-commands |
