mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 02:20:53 +02:00
gnu: go-github-com-viant-toolbox: Skip some tests on i686 system.
* gnu/packages/golang-xyz.scm (go-github-com-viant-toolbox) [arguments] <test-flags>: Re-write with STRING-JOIN to add more failing tests. <test-subdirs>: Skip including "data/..." on non 64bit systems. Change-Id: I0d736c5bc01085b7dd7999ef90328b26ff5fb6f8
This commit is contained in:
parent
6394396c7d
commit
4337b7eb71
1 changed files with 22 additions and 11 deletions
|
@ -16277,10 +16277,21 @@ generate mocks from those interfaces.")
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:import-path "github.com/viant/toolbox"
|
#:import-path "github.com/viant/toolbox"
|
||||||
#:test-flags #~(list "-skip" "TestCase_To|Test_NewReplayService")
|
#:test-flags
|
||||||
#:test-subdirs #~(list "bridge/..."
|
#~(list "-skip" (string-join
|
||||||
|
(list "TestCase_To"
|
||||||
|
"Test_NewReplayService")
|
||||||
|
"|"))
|
||||||
|
#:test-subdirs
|
||||||
|
#~(list "bridge/..."
|
||||||
"cred/..."
|
"cred/..."
|
||||||
"data/..."
|
;; Tests fail on i686-linux system:
|
||||||
|
;; <...>/conversion_test.go:142:17: cannot use 2323232323223
|
||||||
|
;; (untyped int constant) as int value in argument to aMap.Put
|
||||||
|
;; (overflows).
|
||||||
|
#$@(if (target-64bit?)
|
||||||
|
'("data/...")
|
||||||
|
'())
|
||||||
"format/..."
|
"format/..."
|
||||||
"sampler/..."
|
"sampler/..."
|
||||||
"secret/..."
|
"secret/..."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue