diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-03 12:21:28 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-03 14:02:38 +0000 |
commit | 4ded4c6b7132e6efcad8b393b390478aff26a8b2 (patch) | |
tree | 0203b5c1cf2cca059d1d1c9b76c102dafa627723 /gnu | |
parent | e1cee41a025b7ffba19c147fd5277fae66260c29 (diff) | |
download | guix-4ded4c6b7132e6efcad8b393b390478aff26a8b2.tar.gz guix-4ded4c6b7132e6efcad8b393b390478aff26a8b2.zip |
gnu: go-github-com-cespare-xxhash-v2: Skip dynamic and benchmark tests.
Reported in #75970 by Roman Scherer <roman@burningswell.com>.
Tests containing in "dynamic" directory fail to find ld on aarch64-linux
system, these changes limit the number of tests to current project's
root and "xxhsum" subdir.
* gnu/packages/golang-crypto.scm (go-github-com-cespare-xxhash-v2)
[arguments] <test-subdirs>: Limit to "xxhsum" and project's root.
Change-Id: Id67a33c313e127ffafbcf64da01515a6a3cc96fc
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang-crypto.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index 75c56684d4..4938fee70a 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -446,6 +446,7 @@ described at @url{https://xxhash.com/}.") (arguments (list #:import-path "github.com/cespare/xxhash/v2" + #:test-subdirs #~(list "xxhsum/..." ".") #:phases #~(modify-phases %standard-phases (replace 'check |