forked from diffblue/cbmc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve naming of command line options
Drops the 'java' prefix from the most important java command line options. The prefix is not required anymore since JBMC and CBMC do not share the same command line interface anymore.
- Loading branch information
1 parent
39bc7ea
commit 548baea
Showing
4 changed files
with
38 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,8 +32,10 @@ Author: Daniel Kroening, [email protected] | |
"(throw-assertion-error)" \ | ||
"(java-assume-inputs-non-null)" \ | ||
"(java-throw-runtime-exceptions)" \ | ||
"(java-max-input-array-length):" \ | ||
"(java-max-input-tree-depth):" \ | ||
"(java-max-input-array-length):" /* will go away */ \ | ||
"(max-nondet-array-length):" \ | ||
"(java-max-input-tree-depth):" /* will go away */ \ | ||
"(max-nondet-tree-depth):" \ | ||
"(java-max-vla-length):" \ | ||
"(java-cp-include-files):" \ | ||
"(lazy-methods)" /* will go away */ \ | ||
|
@@ -51,9 +53,9 @@ Author: Daniel Kroening, [email protected] | |
" --java-assume-inputs-non-null never initialize reference-typed parameter to the\n" /* NOLINT(*) */ \ | ||
" entry point with null\n" /* NOLINT(*) */ \ | ||
" --java-throw-runtime-exceptions make implicit runtime exceptions explicit\n" /* NOLINT(*) */ \ | ||
" --java-max-input-array-length N limit input array size to <= N\n" /* NOLINT(*) */ \ | ||
" --java-max-input-tree-depth N object references are (deterministically) set to null in\n" /* NOLINT(*) */ \ | ||
" the object\n" /* NOLINT(*) */ \ | ||
" --max-nondet-array-length N limit nondet (e.g. input) array size to <= N\n" /* NOLINT(*) */ \ | ||
" --max-nondet-tree-depth N limit size of nondet (e.g. input) object tree;\n" /* NOLINT(*) */ \ | ||
" at level N references are set to null\n" /* NOLINT(*) */ \ | ||
" --java-max-vla-length limit the length of user-code-created arrays\n" /* NOLINT(*) */ \ | ||
" --java-cp-include-files regexp or JSON list of files to load (with '@' prefix)\n" /* NOLINT(*) */ \ | ||
" --no-lazy-methods load and translate all methods given on the command line\n" /* NOLINT(*) */ \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters