This commit is contained in:
swrup 2025-11-11 02:07:51 +01:00
parent aa2ff7b2f0
commit 2f3113f55d
11742 changed files with 1223940 additions and 0 deletions

View file

@ -0,0 +1,42 @@
Package conflicts are ignored when dune-projects contains multiple conflicts
$ . ./helpers.sh
$ mkrepo
$ mkpkg bar
A package which depends on a single package and also conflicts with the same package:
$ solve_project << EOF
> (lang dune 3.11)
> (package
> (name foo)
> (allow_empty)
> (depends bar)
> (conflicts bar))
> EOF
Error: Unable to solve dependencies for the following lock directories:
Lock directory dune.lock:
Couldn't solve the package dependency formula.
Selected candidates: foo.dev
- bar -> (problem)
No usable implementations:
bar.0.0.1: Package does not satisfy constraints of local package foo
[1]
Now add an additional conflict on a non-existant package "baz". Dune should continue to fail to find a solution due to the conflict with "bar".
$ solve_project << EOF
> (lang dune 3.11)
> (package
> (name foo)
> (allow_empty)
> (depends bar)
> (conflicts bar baz))
> EOF
Error: Unable to solve dependencies for the following lock directories:
Lock directory dune.lock:
Couldn't solve the package dependency formula.
Selected candidates: foo.dev
- bar -> (problem)
No usable implementations:
bar.0.0.1: Package does not satisfy constraints of local package foo
[1]