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

(Test Generation) Fix #3726 bug leading to stack overflow during test generation #3727

Merged
merged 10 commits into from
May 25, 2023
Prev Previous commit
Next Next commit
Fix merge
  • Loading branch information
Aleksandr Fedchin committed May 23, 2023
commit cc5da8e5e0ed005ad120083453acd5795497ca3d
2 changes: 1 addition & 1 deletion Source/DafnyTestGeneration.Test/Various.cs
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ class LoopingList {
}
}
".TrimStart();
var options = Setup.GetDafnyOptions();
var options = Setup.GetDafnyOptions(output);
var program = Utils.Parse(options, source);
options.TestGenOptions.TargetMethod =
"M.LoopingList.getValue";
Expand Down
Loading