Skip to content
Snippets Groups Projects
Commit 5f9de0b0 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #9522: Bail if no numpy installed

parent 050513f3
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,10 @@ ...@@ -5,7 +5,10 @@
# generate binary input files through tcmpfloat.py # generate binary input files through tcmpfloat.py
./runctest.sh tcmpfloat ./runctest.sh tcmpfloat
if [ $? -ne 0 ]; then echo "Failed to generate test input files"; exit 1; fi RESULT=$?
if [ $RESULT -eq 3 ]; then exit 3; fi
if [ $RESULT -ne 0 ]; then echo "Failed to generate test input files"; exit 1; fi
status=0 status=0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment