mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 12:26:52 +02:00
community/kicad: disable qa_pcbnew test on x86
This commit is contained in:
parent
a18622a291
commit
cb7e07b164
@ -65,20 +65,23 @@ build() {
|
||||
}
|
||||
|
||||
check() {
|
||||
local failing_tests
|
||||
case "$CARCH" in
|
||||
armv7|armhf|x86)
|
||||
armv7|armhf)
|
||||
# qa_cli requires too much memory to pass on 32bit arches
|
||||
failing_tests="qa_cli"
|
||||
ctest --test-dir build --output-on-failure -E "qa_cli"
|
||||
;;
|
||||
x86)
|
||||
# qa_cli requires too much memory to pass on 32bit arches
|
||||
# qa_pcbnew: SIGTRAP***Exception/"Assert failure"
|
||||
ctest --test-dir build --output-on-failure -E '(qa_pcbnew|qa_cli)'
|
||||
;;
|
||||
ppc64le)
|
||||
# design rule regression checks fail on ppc64le
|
||||
failing_tests="qa_pcbnew"
|
||||
ctest --test-dir build --output-on-failure -E "qa_pcbnew"
|
||||
;;
|
||||
*)
|
||||
failing_tests=""
|
||||
ctest --test-dir build --output-on-failure
|
||||
esac
|
||||
ctest --test-dir build --output-on-failure -E $failing_tests
|
||||
}
|
||||
|
||||
package() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user