mte/unikernel/duniverse/dune_/test/blackbox-tests/test-cases/aliases.t/run.t

33 lines
843 B
Perl
Raw Normal View History

2025-11-11 02:07:51 +01:00
$ 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]