Skip to content
Snippets Groups Projects
Commit 77e8664c authored by an7s's avatar an7s
Browse files

return error exit code when we can't produce a coverage file

(for example if Grace doesn't generate any input/output pairs)
parent e1e5da16
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ $SECURITY_TRANSFORMS_HOME/tools/cover/cover a.ncexe a.ncexe.annot $EXECUTED_ADDR
grep -v "0\.0" $COVERAGE_FNS | cut -f1 -d" " > $CANDIDATE_FNS_PRE_LIBC
grep "0\.0" $COVERAGE_FNS | cut -f1 -d" " > $FILTERED_OUT
if [ -f $COVERAGE_FNS ]; then
if [ ! -f $COVERAGE_FNS ]; then
return 1
fi
......
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