diff options
| author | Greg Hogan <code@greghogan.com> | 2025-04-02 12:56:49 +0000 |
|---|---|---|
| committer | Greg Hogan <code@greghogan.com> | 2025-08-04 03:21:52 +0000 |
| commit | 9721dc13860810e38bad53a4a3158dc48d87e096 (patch) | |
| tree | 827321a200fed3468e53d9f5ba589184b2e344f6 /gnu | |
| parent | e7b8d43eb2398e566e56b30466a9c3773a9ecd20 (diff) | |
gnu: vigra: Fix tests.
* gnu/packages/image.scm (vigra)[arguments]: Delete #:test-exclude.
<#:configure-flags>: Enable tests builds but not auto-execution.
Change-Id: I89b93260be25a772f5de3139bb062097143765e4
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/image.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 1598d330464..a0967bc5a7b 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -1461,7 +1461,6 @@ from Lisp and S-expressions, building pixel perfect badges.") (native-inputs (list doxygen python-nose python-sphinx)) (arguments (list - #:test-target "check" #:configure-flags #~(list "-Wno-dev" ;suppress developer mode with lots of warnings (string-append @@ -1477,7 +1476,11 @@ from Lisp and S-expressions, building pixel perfect badges.") ;; needs to be set. (string-append "-DCMAKE_CXX_FLAGS=-I" (assoc-ref %build-inputs "ilmbase") - "/include/OpenEXR" " -ffloat-store")))) + "/include/OpenEXR" " -ffloat-store") + ;; Tests are not built by default. + "-DAUTOBUILD_TESTS=ON" + ;; Disable running tests during the build. + "-DAUTOEXEC_TESTS=OFF"))) (synopsis "Computer vision library") (description "VIGRA stands for Vision with Generic Algorithms. It is an image |
