Skip to content
Snippets Groups Projects
Commit ff17efb1 authored by Petr Rockai's avatar Petr Rockai
Browse files

tools: Do not dump core when divcheck encounters an unexpected result.

parent f838b25a
No related branches found
No related tags found
No related merge requests found
......@@ -20,3 +20,8 @@ catch ( divine::ui::ResourceLimit &e )
std::cerr << "E: " << e.what() << std::endl;
return 202; /* indicate resource exhausted */
}
catch ( divcheck::Wrong &w )
{
std::cerr << "E: " << w.what() << std::endl;
return 1;
}
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