Skip to content
Snippets Groups Projects
Commit fcecd29a authored by Aurélien Zanelli's avatar Aurélien Zanelli Committed by Jean-Marc Valin
Browse files

Check if opus_compare is executable in run_vectors.sh

If opus_compare doesn't exist or isn't executable, tests failed normally
which could be misleading.
So test for existence and mode to avoid this ambiguity.
parent 0fed074b
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,11 @@ else
exit 0
fi
if [ ! -x $OPUS_COMPARE ]; then
echo ERROR: Compare program not found: $OPUS_COMPARE
exit 1
fi
if [ -x $OPUS_DEMO ]; then
echo Decoding with $OPUS_DEMO
else
......
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