Skip to content

Commit e8b08e7

Browse files
committed
Update cmdliner to display full command name
1 parent 0b45bad commit e8b08e7

File tree

11 files changed

+41
-32
lines changed

11 files changed

+41
-32
lines changed

test/blackbox-tests/test-cases/cmdline/profile.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Bug #4632
22

33
$ dune build -p
4-
dune: option '-p' needs an argument
4+
dune build: option '-p' needs an argument
55
Usage: dune build [OPTION]… [TARGET]…
66
Try 'dune build --help' or 'dune --help' for more information.
77
[1]

test/blackbox-tests/test-cases/cmdliner-dep-conf.t/run.t

100755100644
+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
[1]
1515

1616
$ dune build "(fi"
17-
dune: TARGET… arguments: unclosed parenthesis at end of input
17+
dune build: TARGET… arguments: unclosed parenthesis at end of input
1818
Usage: dune build [OPTION]… [TARGET]…
1919
Try 'dune build --help' or 'dune --help' for more information.
2020
[1]
2121

2222
$ dune build "()"
23-
dune: TARGET… arguments: Unexpected list
23+
dune build: TARGET… arguments: Unexpected list
2424
Usage: dune build [OPTION]… [TARGET]…
2525
Try 'dune build --help' or 'dune --help' for more information.
2626
[1]

test/blackbox-tests/test-cases/describe.t

+4-4
Original file line numberDiff line numberDiff line change
@@ -1267,10 +1267,10 @@ Test errors
12671267
[1]
12681268

12691269
$ dune describe --lang 1.0
1270-
dune: Only --lang 0.1 is available at the moment as this command is not yet
1271-
stabilised. If you would like to release a software that relies on the output
1272-
of 'dune describe', please open a ticket on
1273-
https://github.com/ocaml/dune.
1270+
dune describe: Only --lang 0.1 is available at the moment as this command is not yet
1271+
stabilised. If you would like to release a software that relies on the output
1272+
of 'dune describe', please open a ticket on
1273+
https://github.com/ocaml/dune.
12741274
Usage: dune describe [OPTION]… [STRING]…
12751275
Try 'dune describe --help' or 'dune --help' for more information.
12761276
[1]

test/blackbox-tests/test-cases/dune-init.t/run.t

+7-6
Original file line numberDiff line numberDiff line change
@@ -251,10 +251,11 @@ Comments in dune files are preserved
251251
Will not create components with invalid names
252252

253253
$ dune init lib invalid-component-name ./_test_lib
254-
dune: NAME argument: invalid component name `invalid-component-name'
255-
Library names must be non-empty and composed only of the
256-
following
257-
characters: 'A'..'Z', 'a'..'z', '_' or '0'..'9'.
254+
dune init: NAME argument: invalid component name
255+
`invalid-component-name'
256+
Library names must be non-empty and composed only of the
257+
following
258+
characters: 'A'..'Z', 'a'..'z', '_' or '0'..'9'.
258259
Usage: dune init [OPTION]… COMPONENT NAME [PATH]
259260
Try 'dune init --help' or 'dune --help' for more information.
260261
[1]
@@ -264,8 +265,8 @@ Will not create components with invalid names
264265
Will fail and inform user when invalid component command is given
265266

266267
$ dune init foo blah
267-
dune: COMPONENT argument: invalid value 'foo', expected one of 'executable',
268-
'library', 'project' or 'test'
268+
dune init: COMPONENT argument: invalid value 'foo', expected one of
269+
'executable', 'library', 'project' or 'test'
269270
Usage: dune init [OPTION]… COMPONENT NAME [PATH]
270271
Try 'dune init --help' or 'dune --help' for more information.
271272
[1]
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
external-lib-deps is no more.
22

33
$ dune external-lib-deps
4-
dune: This subcommand is no longer implemented.
4+
dune external-lib-deps: This subcommand is no longer implemented.
55
[1]

test/blackbox-tests/test-cases/github3046.t

+9-8
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,29 @@ are given as parameters
77
`dune init exe main --libs="str gsl"` returns an informative parsing error
88

99
$ dune init exe main --libs="str gsl"
10-
dune: option '--libs': invalid element in list ('str gsl'): expected a valid
11-
dune atom
10+
dune init: option '--libs': invalid element in list ('str gsl'): expected a
11+
valid dune atom
1212
Usage: dune init [OPTION]… COMPONENT NAME [PATH]
1313
Try 'dune init --help' or 'dune --help' for more information.
1414
[1]
1515

1616
`dune init lib foo --ppx="foo bar"` returns an informative parsing error
1717

1818
$ dune init lib foo --ppx="foo bar"
19-
dune: option '--ppx': invalid element in list ('foo bar'): expected a valid
20-
dune atom
19+
dune init: option '--ppx': invalid element in list ('foo bar'): expected a
20+
valid dune atom
2121
Usage: dune init [OPTION]… COMPONENT NAME [PATH]
2222
Try 'dune init --help' or 'dune --help' for more information.
2323
[1]
2424

2525
`dune init lib foo --public="some/invalid&name!"` returns an informative parsing error
2626

2727
$ dune init lib foo --public="some/invalid&name!"
28-
dune: option '--public': invalid component name `some/invalid&name!'
29-
Library names must be non-empty and composed only of the
30-
following
31-
characters: 'A'..'Z', 'a'..'z', '_' or '0'..'9'.
28+
dune init: option '--public': invalid component name
29+
`some/invalid&name!'
30+
Library names must be non-empty and composed only of the
31+
following
32+
characters: 'A'..'Z', 'a'..'z', '_' or '0'..'9'.
3233
Usage: dune init [OPTION]… COMPONENT NAME [PATH]
3334
Try 'dune init --help' or 'dune --help' for more information.
3435
[1]

test/blackbox-tests/test-cases/github3530.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ When an empty string is passed to `-p`, we get a nice error message.
22

33
$ echo '(lang dune 2.0)' > dune-project
44
$ dune build -p ''
5-
dune: option '--only-packages': Invalid package name: ""
5+
dune build: option '--only-packages': Invalid package name: ""
66
Usage: dune build [OPTION]… [TARGET]…
77
Try 'dune build --help' or 'dune --help' for more information.
88
[1]
99

1010
This can happen in a list as well:
1111

1212
$ dune build -p 'a,b,'
13-
dune: option '--only-packages': Invalid package name: ""
13+
dune build: option '--only-packages': Invalid package name: ""
1414
Usage: dune build [OPTION]… [TARGET]…
1515
Try 'dune build --help' or 'dune --help' for more information.
1616
[1]

test/blackbox-tests/test-cases/misc.t/run.t

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,37 +6,37 @@ Test that incompatible options are properly reported
66
----------------------------------------------------
77

88
$ dune build --verbose --display quiet
9-
dune: Cannot use --verbose and --display simultaneously
9+
dune build: Cannot use --verbose and --display simultaneously
1010
Usage: dune build [OPTION]… [TARGET]…
1111
Try 'dune build --help' or 'dune --help' for more information.
1212
[1]
1313

1414
$ dune build -p toto --root .
15-
dune: option '--root' cannot be repeated
15+
dune build: option '--root' cannot be repeated
1616
Usage: dune build [OPTION]… [TARGET]…
1717
Try 'dune build --help' or 'dune --help' for more information.
1818
[1]
1919

2020
$ dune build --for-release-of-packages toto --root .
21-
dune: option '--root' cannot be repeated
21+
dune build: option '--root' cannot be repeated
2222
Usage: dune build [OPTION]… [TARGET]…
2323
Try 'dune build --help' or 'dune --help' for more information.
2424
[1]
2525

2626
$ dune build --no-config --config x
27-
dune: Cannot use --config and --no-config simultaneously
27+
dune build: Cannot use --config and --no-config simultaneously
2828
Usage: dune build [OPTION]… [TARGET]…
2929
Try 'dune build --help' or 'dune --help' for more information.
3030
[1]
3131

3232
$ dune build -p toto --release
33-
dune: option '--root' cannot be repeated
33+
dune build: option '--root' cannot be repeated
3434
Usage: dune build [OPTION]… [TARGET]…
3535
Try 'dune build --help' or 'dune --help' for more information.
3636
[1]
3737

3838
$ dune build --release --root .
39-
dune: option '--root' cannot be repeated
39+
dune build: option '--root' cannot be repeated
4040
Usage: dune build [OPTION]… [TARGET]…
4141
Try 'dune build --help' or 'dune --help' for more information.
4242
[1]

vendor/cmdliner/src/cmdliner.mli

+4
Original file line numberDiff line numberDiff line change
@@ -573,8 +573,10 @@ module Cmd : sig
573573
(** {1:info Environment variable information} *)
574574

575575
[@@@alert "-deprecated"]
576+
576577
type info = Term.env_info (* because of Arg. *)
577578
(** The type for environment variable information. *)
579+
578580
[@@@alert "+deprecated"]
579581

580582
val info : ?deprecated:string -> ?docs:string -> ?doc:string -> var -> info
@@ -799,11 +801,13 @@ module Arg : sig
799801
(** The type for converted argument printers. *)
800802

801803
[@@@alert "-deprecated"] (* Need to be able to mention them ! *)
804+
802805
type 'a conv = 'a parser * 'a printer
803806
(** The type for argument converters.
804807
805808
{b Warning.} Do not use directly, use {!val-conv} or {!val-conv'}.
806809
This type will become abstract in the next major version of cmdliner. *)
810+
807811
[@@@alert "+deprecated"] (* Need to be able to mention them ! *)
808812

809813
val conv :

vendor/cmdliner/src/cmdliner_msg.ml

+4-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@ let err_cmd_missing ~dom =
7171

7272
(* Other messages *)
7373

74-
let exec_name ei = Cmdliner_info.Cmd.name @@ Cmdliner_info.Eval.main ei
74+
let exec_name ei =
75+
let cmd = Cmdliner_info.Eval.cmd ei in
76+
let parents = Cmdliner_info.Eval.parents ei in
77+
String.concat " " @@ List.rev_map Cmdliner_info.Cmd.name @@ cmd::parents
7578

7679
let pp_version ppf ei =
7780
match Cmdliner_info.Cmd.version @@ Cmdliner_info.Eval.main ei with

vendor/update-cmdliner.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
version=37a715a37393516860a58d8ac6d38ac9bc5d7c96
3+
version=7b1940f6c5fdd85189bed10a12068d1f756e01c3
44

55
set -e -o pipefail
66

0 commit comments

Comments
 (0)