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,32 @@
$ dune clean
$ dune build @just-in-src
running in .
$ dune clean
$ dune build @everywhere
running in .
running in bar
running in baz
$ dune clean
$ dune build @x
running in .
running in bar
running in baz
$ dune build @plop
Error: Alias "plop" specified on the command line is empty.
It is not defined in . or any of its descendants.
[1]
$ dune build @truc/x
Error: Don't know about directory truc specified on the command line!
[1]
Test error messages for unknown aliases
$ dune build @unknown-alias
Error: Alias "unknown-alias" specified on the command line is empty.
It is not defined in . or any of its descendants.
[1]
$ dune build @alias-depending-on-unknown-alias
Error: No rule found for alias unknown-alias
-> required by alias alias-depending-on-unknown-alias in dune:9
[1]