diff options
author | Ahmad Draidi <a.r.draidi@redscript.org> | 2024-02-15 16:55:22 +0400 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2024-02-24 10:59:22 +0100 |
commit | df5653adcbd1f9799f810f46d514b2ca4112af97 (patch) | |
tree | cd1b90f9a58f546ce271e771c37d637dcc254dd5 | |
parent | 63b96da5ea5dfb5c330d9ee18668e8c600add19c (diff) | |
download | guix-df5653adcbd1f9799f810f46d514b2ca4112af97.tar.gz guix-df5653adcbd1f9799f810f46d514b2ca4112af97.zip |
gnu: leptonica: Fix random test failures.
Fixes <https://issues.guix.gnu.org/65441>.
Running tests in parallel (e.g. "make check -j16") causes random test
failures. Same behavior observed on Debian.
* gnu/packages/image.scm (leptonica)[arguments]: Disable parallel tests.
Change-Id: I629c6c8be626a704be046dc79ea4480896cd11cc
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
-rw-r--r-- | gnu/packages/image.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 0ff5e9baed..7f8bf950f7 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -780,6 +780,9 @@ collection of tools for doing simple manipulations of TIFF images.") zlib)) (arguments (list + ;; Parallel tests cause some tests to fail randomly. + ;; Same thing observed on Debian. + #:parallel-tests? #f #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-reg-wrapper |