community/kicad: disable qa_pcbnew test on x86

This commit is contained in:
omni 2024-06-09 12:48:01 +00:00
parent a18622a291
commit cb7e07b164

View File

@ -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() {