Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cbmc.inc
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ esac ; \
\
done \
'
eval `tail -n 1 $LOG.ok`
}
1 change: 0 additions & 1 deletion tool-wrapper.inc
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ if [ ! -s $LOG.ok ] ; then
exit 1
fi

eval `tail -n 1 $LOG.ok`
cat $LOG.ok
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is used by cbmc.inc: echo "EC=$EC" - as the final result needs to be communicated back. Either 2LS should be doing the same, or, better, move this into the run function of cbmc.inc.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved.

case $EC in
0) if [[ "$WITNESS_FILE" != "" ]]; then process_graphml $EC > $WITNESS_FILE; \
Expand Down