-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add two options, /quiet and /silent The /quiet option suppresses output other than warnings and errors. The /silent option suppresses all output except the exit code. * More consistent verbosity level checking * Clarify help text for `/silent` Boogie doesn't set a non-zero exit code on verification errors.
- Loading branch information
Showing
7 changed files
with
60 additions
and
6 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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// RUN: %parallel-boogie -quiet "%s" > "%t" | ||
// RUN: %diff "%s.expect" "%t" | ||
|
||
procedure BadAssert() | ||
{ | ||
assert 1 == 2; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
quiet.bpl(6,3): Error: this assertion could not be proved | ||
Execution trace: | ||
quiet.bpl(6,3): anon0 |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// RUN: %parallel-boogie -silent "%s" > "%t" | ||
// RUN: %diff "%s.expect" "%t" | ||
|
||
procedure BadAssert() | ||
{ | ||
assert 1 == 2; | ||
} |
Empty file.