diff options
author | Tom de Vries <tdevries@suse.de> | 2021-08-30 10:30:26 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2021-08-30 10:30:26 +0200 |
commit | 590d3faada8a12bf0937bbf68413956dc6a339a9 (patch) | |
tree | f2da67d9f0140da453dbf697d96bc5bb66282618 /gdb/testsuite/gdb.dwarf2/template-specification-full-name.exp | |
parent | cb03dd22b36b7bd21a81137005ec42dab8355b62 (diff) | |
download | gdb-590d3faada8a12bf0937bbf68413956dc6a339a9.zip gdb-590d3faada8a12bf0937bbf68413956dc6a339a9.tar.gz gdb-590d3faada8a12bf0937bbf68413956dc6a339a9.tar.bz2 |
[gdb/testsuite] Improve argument syntax of proc arange
The current syntax of proc arange is:
...
proc arange { arange_start arange_length {comment ""} {seg_sel ""} } {
...
and a typical call looks like:
...
arange $start $len
...
This style is somewhat annoying because if you want to specify the last
parameter, you need to give the default values of all the other optional ones
before as well:
...
arange $start $len "" $seg_sel
...
Update the syntax to:
...
proc arange { options arange_start arange_length } {
parse_options {
{ comment "" }
{ seg_sel "" }
}
...
such that a typical call looks like:
...
arange {} $start $len
...
and a call using seg_sel looks like:
...
arange {
seg_sel $seg_sel
} $start $len
...
Also update proc aranges, which already has an options argument, to use the
new proc parse_options.
Tested on x86_64-linux.
Co-Authored-By: Simon Marchi <simon.marchi@polymtl.ca>
Diffstat (limited to 'gdb/testsuite/gdb.dwarf2/template-specification-full-name.exp')
-rw-r--r-- | gdb/testsuite/gdb.dwarf2/template-specification-full-name.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.dwarf2/template-specification-full-name.exp b/gdb/testsuite/gdb.dwarf2/template-specification-full-name.exp index 5c59777..6e736f2 100644 --- a/gdb/testsuite/gdb.dwarf2/template-specification-full-name.exp +++ b/gdb/testsuite/gdb.dwarf2/template-specification-full-name.exp @@ -69,7 +69,7 @@ Dwarf::assemble $asm_file { } aranges {} cu_start { - arange "$main_start" "$main_length" + arange {} "$main_start" "$main_length" } } |