Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Execution branch coverage report #4755

Merged
merged 17 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix feature support table
  • Loading branch information
robin-aws committed Nov 9, 2023
commit 9262299ba6846f5b34073d6318334e4c27cca0f5
4 changes: 2 additions & 2 deletions Source/DafnyCore/Feature.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,10 @@ and where at least one variable has potentially infinite bounds.
[FeatureDescription("Separate compilation", "sec-compilation")]
SeparateCompilation,

[FeatureDescription("All built-in types in runtime library", "#sec-compilation-built-ins")]
[FeatureDescription("All built-in types in runtime library", "sec-compilation-built-ins")]
BuiltinsInRuntime,

[FeatureDescription("Execution coverage report", "#sec-dafny-test")]
[FeatureDescription("Execution coverage report", "sec-dafny-test")]
RuntimeCoverageReport
}

Expand Down
4 changes: 2 additions & 2 deletions docs/DafnyRef/Features.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
| [Converting values to strings](#sec-print-statement) | X | X | X | X | X | | X |
| [Legacy CLI without commands](#sec-dafny-commands) | X | X | X | X | X | X | |
| [Separate compilation](#sec-compilation) | X | | X | X | X | X | X |
| [All built-in types in runtime library](##sec-compilation-built-ins) | X | X | X | X | X | | X |
| [Execution coverage report](##sec-compilation-built-ins) | X | | | | | | |
| [All built-in types in runtime library](#sec-compilation-built-ins) | X | X | X | X | X | | X |
| [Execution coverage report](#sec-dafny-test) | X | | | | | | |

[^compiler-feature-forall-note]: 'Sequentializing' a `forall` statement refers to compiling it directly to a series of nested loops
with the statement's body directly inside. The alternative, default compilation strategy
Expand Down