mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 10:30:43 +02:00
gnu: go-github-com-hodgesds-perf-utils: Skip more tests on arm.
I see these failing when built on Honeycomb build machines: === RUN TestDataTLB utils_test.go:234: no such file or directory --- FAIL: TestDataTLB (0.00s) === RUN TestInstructionTLB utils_test.go:246: no such file or directory --- FAIL: TestInstructionTLB (0.00s) It could be something with the system configuration but just disable the tests for now. This is working towards getting the prometheus-node-exporter package building again on aarch64-linux. Note that there's even more test failures when trying to build with qemu binfmt emulation. * gnu/packages/golang-xyz.scm (go-github-com-hodgesds-perf-utils)[arguments]: Skip a couple more tests on arm. Change-Id: Ib5bc41679d825a1a727e240e7fffeb336f82db6d
This commit is contained in:
parent
7fc9cbd3e4
commit
c8f537ac05
1 changed files with 5 additions and 1 deletions
|
@ -7509,7 +7509,11 @@ anniversaries.")
|
||||||
"TestNodeCache"
|
"TestNodeCache"
|
||||||
"TestProfiler"
|
"TestProfiler"
|
||||||
"TestSoftwareProfiler"
|
"TestSoftwareProfiler"
|
||||||
"TestTraceFSMount")
|
"TestTraceFSMount"
|
||||||
|
#$@(if (target-arm?)
|
||||||
|
'("TestDataTLB"
|
||||||
|
"TestInstructionTLB")
|
||||||
|
'()))
|
||||||
"|"))))
|
"|"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list go-github-com-stretchr-testify))
|
(list go-github-com-stretchr-testify))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue