You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
myfile.dfy is open in my VSCode editor, I right-click, and click on Dafny > Dafny test. It launches a command line that fails:
& dafny.exe test --no-verify "...\Source\Dafny-compiler-rust-path-simplification.dfy"
which fails with the issue:
myincludedFile.dfy(4,16): Error
: module ImportedModule does not exist
|
4 | import opened ImportedModule
Potential solutions, in preference order:
Display a clickable Run button in the gutter to run each test individually or all the test of the module (like Rust)
Fix this command so that it would run all the tests of dfyconfig.toml but filter those in this file?
Fix this command by running all the tests on "dfyconfig.toml" because & dafny.exe test --no-verify "...\dfyconfig.toml" should work (but it does not in my case because of missing assembly references)
The text was updated successfully, but these errors were encountered:
I have a project file like this:
and
myfile.dfy
containswhereas
myincludedFile.dfy
contains (to simplify)myfile.dfy
is open in my VSCode editor, I right-click, and click onDafny
>Dafny test
. It launches a command line that fails:which fails with the issue:
Potential solutions, in preference order:
& dafny.exe test --no-verify "...\dfyconfig.toml"
should work (but it does not in my case because of missing assembly references)The text was updated successfully, but these errors were encountered: