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

Fix CoinductiveProofs.dfy granularity #6065

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
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
8 changes: 8 additions & 0 deletions Source/IntegrationTests/TestFiles/LitTests/LitTest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ will be flagged by CI, and should be fixed by either converting it to use
to flag it as intentionally inconsistent,
for tests of backend-specific externs for example.

If a platform is not supported, please use the following command:

```
// UNSUPPORTED: windows, macosx
```

You can specify one or multiple platforms separated by a comma among `windows`, `posix`, `macosx`

## Executing Tests from JetBrains Rider

You will likely find it more convenient to run tests from an IDE such as
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// RUN: %testDafnyForEachResolver --expect-exit-code=4 "%s" -- --allow-deprecation --performance-stats=1
// RUN: %testDafnyForEachResolver --expect-exit-code=4 "%s" -- --allow-deprecation --performance-stats=10


codatatype Stream<T> = Cons(head: T, tail: Stream)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ CoinductiveProofs.dfy(208,21): Related location: this is the postcondition that
CoinductiveProofs.dfy(4,23): Related location: this proposition could not be proved

Dafny program verifier finished with 23 verified, 12 errors
Total resources used is 748143
Max resources used by VC is 59297
Total resources used is 748150
Max resources used by VC is 59300
Loading