Skip to content
Snippets Groups Projects
Commit 99513fd9 authored by Arnaud Blanchard's avatar Arnaud Blanchard
Browse files

Improve error message in case of binaire failure

parent 9c656034
No related branches found
No related tags found
No related merge requests found
......@@ -29,8 +29,8 @@ echo
LOG=$(mktemp) || exit 1
trap 'cat $LOG && rm -f "$LOG"' EXIT INT HUP TERM
( $blaar_dir/compile.sh t_parse_args 2>&1> $LOG; error=$?; test $error == 127 && echo "already compiled" || exit $error )
$blaar_dir/bin/t_parse_args "arg1" "arg2" 2> t_parse_args/test_result.log
(c$blaar_dir/compile.sh t_parse_args 2>&1> $LOG; error = $?; test $error == 127 && echo "already compiled" || exit $error; )
$blaar_dir/bin/t_parse_args "arg1" "arg2" 2> t_parse_args/test_result.log || { echo "Error executing 't_parse_args':"; cat t_parse_args/test_result.log; }
git diff --exit-code t_parse_args/test_result.log || { echo "ERROR: The result of 't_parse_args' is not the one expected"; exit 3; }
echo
echo "- t_parse_args: compilation:OK, execution:OK, result OK"
......
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