mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: rapidcheck: Disable failing tests on aarch64.
* gnu/packages/check.scm (rapidcheck): Disable failing tests on aarch64. Change-Id: I9b4e7be2acad615cc1586adb37cc39b43590b2d8 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
3bd9ac84e4
commit
aeef827d2d
1 changed files with 7 additions and 1 deletions
|
@ -3500,7 +3500,13 @@ (define-public rapidcheck
|
|||
(display "find_package(Boost GLOBAL)\n" out)))
|
||||
(substitute* "extras/boost/test/CMakeLists.txt"
|
||||
(("^([ ]*)boost" all spaces)
|
||||
(string-append spaces "Boost::boost")))))))
|
||||
(string-append spaces "Boost::boost")))
|
||||
;; Disable tests failing on Apple M1 and Hetzner CAX41 (aarch64).
|
||||
;; Upstream issue: https://github.com/emil-e/rapidcheck/issues/328
|
||||
(substitute* "test/gen/NumericTests.cpp"
|
||||
(("forEachType<SignedProperties.*") ""))
|
||||
(substitute* "test/shrink/ShrinkTests.cpp"
|
||||
(("forEachType<SignedIntegralProperties.*") ""))))))
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags #~(list "-DCMAKE_POSITION_INDEPENDENT_CODE=ON"
|
||||
|
|
Loading…
Reference in a new issue