Skip to content

Commit 1e754ae

Browse files
committed
Add reminders of places to invoke default argument setup after testing
1 parent e703835 commit 1e754ae

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

src/goto-analyzer/goto_analyzer_parse_options.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ void goto_analyzer_parse_optionst::get_command_line_options(optionst &options)
6767
if(cmdline.isset("function"))
6868
options.set_option("function", cmdline.get_value("function"));
6969

70+
// TODO: Will need to add the default one here.
7071
// all checks supported by goto_check
7172
PARSE_OPTIONS_GOTO_CHECK(cmdline, options);
7273

src/goto-diff/goto_diff_parse_options.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ void goto_diff_parse_optionst::get_command_line_options(optionst &options)
5959
if(cmdline.isset("cover"))
6060
parse_cover_options(cmdline, options);
6161

62+
// TODO: May need to add default one here.
6263
// all checks supported by goto_check
6364
PARSE_OPTIONS_GOTO_CHECK(cmdline, options);
6465

src/goto-instrument/goto_instrument_parse_options.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,6 +1025,7 @@ void goto_instrument_parse_optionst::instrument_goto_program()
10251025
else
10261026
options.set_option("simplify", true);
10271027

1028+
// TODO: May need to add the default one here
10281029
// all checks supported by goto_check
10291030
PARSE_OPTIONS_GOTO_CHECK(cmdline, options);
10301031

src/libcprover-cpp/api_options.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ static std::unique_ptr<optionst> make_internal_default_options()
1818
{
1919
std::unique_ptr<optionst> options = util_make_unique<optionst>();
2020
cmdlinet command_line;
21+
// TODO: May need to add the default one here.
2122
PARSE_OPTIONS_GOTO_CHECK(command_line, (*options));
2223
parse_solver_options(command_line, *options);
2324
options->set_option("built-in-assertions", true);

0 commit comments

Comments
 (0)