Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ exclude = [
"tests/cargo-ui",
"tests/slow",
"tests/std-checks",
"tests/assess-scan-test-scaffold",
"tests/script-based-pre",
"tests/script-based-pre/build-cache-bin/target/new_dep",
"tests/script-based-pre/build-cache-dirty/target/new_dep",
Expand Down
2 changes: 0 additions & 2 deletions docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,8 @@
- [Working with `rustc`](./rustc-hacks.md)
- [Migrating to StableMIR](./stable-mir.md)
- [Command cheat sheets](./cheat-sheets.md)
- [cargo kani assess](./dev-assess.md)
- [Testing](./testing.md)
- [Regression testing](./regression-testing.md)
- [(Experimental) Testing with a Large Number of Repositories](./repo-crawl.md)
- [Performance comparisons](./performance-comparisons.md)
- [`benchcomp` command line](./benchcomp-cli.md)
- [`benchcomp` configuration file](./benchcomp-conf.md)
Expand Down
185 changes: 0 additions & 185 deletions docs/src/dev-assess.md

This file was deleted.

93 changes: 0 additions & 93 deletions docs/src/repo-crawl.md

This file was deleted.

3 changes: 1 addition & 2 deletions docs/src/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ two very good reasons to do it:

We recommend reading our section on [Regression
Testing](./regression-testing.md) if you're interested in Kani
development. To run kani on a large number of remotely
hosted crates, please see [Repository Crawl](./repo-crawl.md).
development.
2 changes: 0 additions & 2 deletions kani-compiler/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ pub enum ReachabilityType {
None,
/// Start the cross-crate reachability analysis from all public functions in the local crate.
PubFns,
/// Start the cross-crate reachability analysis from all *test* (i.e. `#[test]`) harnesses in the local crate.
Tests,
/// Start the cross-crate reachability analysis from all functions in the local crate.
/// Currently, this mode is only used for automatic harness generation.
AllFns,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ impl CodegenBackend for LlbcCodegenBackend {
units.store_modifies(&modifies_instances);
units.write_metadata(&queries, tcx);
}
ReachabilityType::Tests | ReachabilityType::AllFns => todo!(),
ReachabilityType::AllFns => todo!(),
ReachabilityType::None => {}
ReachabilityType::PubFns => {
let unit = CodegenUnit::default();
Expand Down
Loading
Loading