diff options
author | Maciej W. Rozycki <macro@embecosm.com> | 2022-01-19 21:55:10 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@embecosm.com> | 2022-01-19 21:55:10 +0000 |
commit | 101d68a9fa75173b0bb5ab8b3cdd5d94e44d1a2f (patch) | |
tree | 045c921c367594c5c61234eff8b88b73ae9b0900 /gdb/testsuite/gdb.cp | |
parent | 5d4c63a635546c77bfa7ebabf944cb1d93f5c6fe (diff) | |
download | gdb-101d68a9fa75173b0bb5ab8b3cdd5d94e44d1a2f.zip gdb-101d68a9fa75173b0bb5ab8b3cdd5d94e44d1a2f.tar.gz gdb-101d68a9fa75173b0bb5ab8b3cdd5d94e44d1a2f.tar.bz2 |
Add `set print array-indexes' tests for C/C++ arrays
Add `set print array-indexes' tests for C/C++ arrays, complementing one
for Fortran arrays.
Diffstat (limited to 'gdb/testsuite/gdb.cp')
-rw-r--r-- | gdb/testsuite/gdb.cp/array-indices.exp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.cp/array-indices.exp b/gdb/testsuite/gdb.cp/array-indices.exp new file mode 100644 index 0000000..514f6b6 --- /dev/null +++ b/gdb/testsuite/gdb.cp/array-indices.exp @@ -0,0 +1,22 @@ +# Copyright 2022 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +# Test the printing of element indices in C++ arrays. + +if {[skip_cplus_tests]} { continue } + +set lang c++ + +source ${srcdir}/gdb.base/array-indices.exp.tcl |