Skip to content
Snippets Groups Projects
Commit 366d5d56 authored by Eric Müller's avatar Eric Müller :mountain_bicyclist: Committed by Eleni Mathioulaki
Browse files

fix(BSS2): ignore test fails because of missing catchsegv

parent 429fc858
No related branches found
No related tags found
2 merge requests!651create new experimental release,!650update spack version to v0.23.1
......@@ -208,6 +208,7 @@ class BuildBrainscales(WafPackage):
if (elem.tag == 'failure') and not (
elem.get('message').startswith("pylint:") or
elem.get('message').startswith("pycodestyle:") or
"catchsegv: not found" in elem.get('message') or
("OK" in elem.get('message') and "Segmentation fault" in elem.get('message'))):
raise RuntimeError("Failed test found: {}".format(testcase.get('name')))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment