diff options
author | Tom de Vries <tdevries@suse.de> | 2023-03-06 16:49:19 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2023-03-06 16:49:19 +0100 |
commit | b50420fd058824ecc737709f49f87d622b0f3371 (patch) | |
tree | cc1f11c246023c7acb69e0257b85fcbb866d46ab /gdb/testsuite/gdb.testsuite | |
parent | b24a386d75a769d2362e9f9261a2efb023a88a82 (diff) | |
download | gdb-b50420fd058824ecc737709f49f87d622b0f3371.zip gdb-b50420fd058824ecc737709f49f87d622b0f3371.tar.gz gdb-b50420fd058824ecc737709f49f87d622b0f3371.tar.bz2 |
[gdb/testsuite] Use regular proc syntax for gdb_caching_proc
A regular tcl proc with no args looks like:
...
proc foo {} {
return 1
}
...
but a gdb_caching_proc deviates from that syntax by dropping the explicit no
args bit:
...
gdb_caching_proc foo {
return 1
}
...
Make the gdb_caching_proc use the same syntax as regular procs, such that we
have instead:
...
gdb_caching_proc foo {} {
return 1
}
...
Tested on x86_64-linux.
Reviewed-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdb/testsuite/gdb.testsuite')
-rw-r--r-- | gdb/testsuite/gdb.testsuite/gdb-caching-proc.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.testsuite/gdb-caching-proc.exp b/gdb/testsuite/gdb.testsuite/gdb-caching-proc.exp index de35c04..33a21df 100644 --- a/gdb/testsuite/gdb.testsuite/gdb-caching-proc.exp +++ b/gdb/testsuite/gdb.testsuite/gdb-caching-proc.exp @@ -12,7 +12,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -gdb_caching_proc gdb_testsuite_gdb_caching_proc_exp_noarg { +gdb_caching_proc gdb_testsuite_gdb_caching_proc_exp_noarg {} { incr ::count return 1 } |