diff --git a/test/blackbox-tests/test-cases/github4345.t b/test/blackbox-tests/test-cases/github4345.t new file mode 100644 index 000000000000..0d4077ecd8c3 --- /dev/null +++ b/test/blackbox-tests/test-cases/github4345.t @@ -0,0 +1,11 @@ +This is a reproduction case from issue #4345 + $ DIR="gh4345" + $ mkdir $DIR && cd $DIR + $ echo "(lang dune 2.8)" > dune-project + $ mkdir lib + $ touch lib.opam file lib/lib.ml + $ cat >lib/dune < (library (name lib) (public_name lib)) + > (copy_files (files ../file)) + > EOF + $ dune build --root . diff --git a/test/blackbox-tests/test-cases/reporting-of-cycles.t/run.t b/test/blackbox-tests/test-cases/reporting-of-cycles.t/run.t index e94b8e12160d..e630fee88ae8 100644 --- a/test/blackbox-tests/test-cases/reporting-of-cycles.t/run.t +++ b/test/blackbox-tests/test-cases/reporting-of-cycles.t/run.t @@ -67,22 +67,3 @@ cryptic and can involve unrelated files: -> required by _build/default/indirect/a.exe -> required by alias indirect/indirect-deps in indirect/dune:6 [1] - -This is a reproduction case from issue #4345 - $ DIR="gh4345" - $ mkdir $DIR && cd $DIR - $ echo "(lang dune 2.8)" > dune-project - $ mkdir lib - $ touch lib.opam file lib/lib.ml - $ cat >lib/dune < (library (name lib) (public_name lib)) - > (copy_files (files ../file)) - > EOF - $ dune build --root . - Error: Dependency cycle between: - Computing installable artifacts for package lib - -> Evaluating predicate in directory _build/default - -> Computing directory contents of _build/default/lib - -> Computing installable artifacts for package lib - [1] - $ cd ..