File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 19
19
#include < util/config.h>
20
20
#include < util/exit_codes.h>
21
21
#include < util/invariant.h>
22
+ #include < util/make_unique.h>
22
23
#include < util/unicode.h>
23
- #include < util/xml.h>
24
24
#include < util/version.h>
25
+ #include < util/xml.h>
25
26
26
27
#include < langapi/language.h>
27
28
28
29
#include < ansi-c/ansi_c_language.h>
29
30
30
31
#include < goto-checker/all_properties_verifier.h>
31
32
#include < goto-checker/all_properties_verifier_with_trace_storage.h>
33
+ #include < goto-checker/stop_on_fail_verifier.h>
32
34
33
35
#include < goto-programs/adjust_float_expressions.h>
34
36
#include < goto-programs/lazy_goto_model.h>
@@ -585,7 +587,13 @@ int jbmc_parse_optionst::doit()
585
587
586
588
if (!options.get_bool_option (" paths" ) && !options.is_set (" cover" ))
587
589
{
588
- if (!options.get_bool_option (" stop-on-fail" ))
590
+ if (options.get_bool_option (" stop-on-fail" ))
591
+ {
592
+ verifier = util_make_unique<
593
+ stop_on_fail_verifiert<java_multi_path_symex_checkert>>(
594
+ options, ui_message_handler, goto_model);
595
+ }
596
+ else
589
597
{
590
598
verifier = util_make_unique<all_properties_verifier_with_trace_storaget<
591
599
java_multi_path_symex_checkert>>(
You can’t perform that action at this time.
0 commit comments