Skip to content
Merged
Changes from all 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
7 changes: 6 additions & 1 deletion lakefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@ globs = ["StrataTest.+"]
[[lean_exe]]
name = "StrataTestMain"
root = "Scripts.StrataTestMain"
needs = ["StrataTest"]
# `Strata` is listed explicitly because the driver spawns `lean` on files
# under `StrataTestExtra/` (which is not a `lean_lib`). Those files import
# modules from the `Strata` library that are not in `StrataTest`'s transitive
# closure (e.g., `Strata.DDM.Integration.Java`), so without this the oleans
# would be missing when running `lake test` from a clean `.lake`.
needs = ["Strata", "StrataTest"]

[[lean_exe]]
name = "StrataToCBMC"
Expand Down
Loading