-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# resolver-tests | ||
|
||
## The aim | ||
|
||
This crate aims to test the resolution of cargo's resolver. It implements a SAT solver to compare resolution of cargo's resolver. | ||
This ensures that cargo's dependency resolution is valid on the SAT. | ||
|
||
## About the test | ||
|
||
The cargo's resolver is very sensitive to what order it tries to evaluate constraints. This makes it incredibly difficult | ||
to be sure that a handful of tests actually covers all the important permutations of decision-making. The tests not only needs | ||
to hit all the corner cases, it needs to try all of the orders of evaluation. So we use fuzz testing to cover more permutations as possible. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters