Skip to content
Snippets Groups Projects
Commit f7e424b6 authored by Eleni Mathioulaki's avatar Eleni Mathioulaki
Browse files

Merge branch 'bss2_more_strict_install_test_evaluation' into 'master'

chore(bss2): Only ignore exit code 139 in `install_test`s

See merge request technical-coordination/project-internal/devops/platform/ebrains-spack-builds!417
parents f974fff0 f246c98c
No related branches found
No related tags found
No related merge requests found
......@@ -191,7 +191,6 @@ class Hxtorch(WafPackage):
with working_dir('spack-test', create=True):
old_pythonpath = os.environ.get('PYTHONPATH', '')
os.environ['PYTHONPATH'] = ':'.join([str(self.prefix.lib), old_pythonpath])
python('-c', 'import hxtorch; print(hxtorch.__file__)')
# ignore exit code for now
cmd_true = which("true")
cmd_true()
bash = which("bash")
# ignore segfaults for now (exit code 139)
bash('-c', '(python -c "import hxtorch; print(hxtorch.__file__)" || ( test $? -eq 139 && echo "segfault")) || exit $?')
......@@ -168,7 +168,6 @@ class PynnBrainscales(WafPackage):
with working_dir('spack-test', create=True):
old_pythonpath = os.environ.get('PYTHONPATH', '')
os.environ['PYTHONPATH'] = ':'.join([str(self.prefix.lib), old_pythonpath])
python('-c', 'import pynn_brainscales; print(pynn_brainscales.__file__)')
# ignore exit code for now
cmd_true = which("true")
cmd_true()
bash = which("bash")
# ignore segfaults for now (exit code 139)
bash('-c', '(python -c "import pynn_brainscales; print(pynn_brainscales.__file__)" || ( test $? -eq 139 && echo "segfault")) || exit $?')
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