2017-01-01 07:50:51 +01:00
|
|
|
# Copyright 2005-2017 Free Software Foundation, Inc.
|
2005-10-03 23:28:04 +02:00
|
|
|
|
|
|
|
# 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
|
2007-08-23 20:14:19 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2005-10-03 23:28:04 +02:00
|
|
|
# (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
|
2007-08-23 20:14:19 +02:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-10-03 23:28:04 +02:00
|
|
|
|
|
|
|
# This file is part of the gdb testsuite. It is intended to test that
|
|
|
|
# gdb can correctly print arrays with indexes for each element of the
|
|
|
|
# array.
|
|
|
|
|
test suite update - gdb.base/[ab]
Convert files gdb.base/[ab]*.exp to use standard_output_file et al.
* a2-run.exp, all-bin.exp, annota1.exp, annota3.exp, anon.exp,
args.exp, arithmet.exp, arrayidx.exp, assign.exp, async-shell.exp,
async.exp, attach-pie-misread.exp, attach-pie-noexec.exp,
attach-twice.exp, attach.exp, auxv.exp, bang.exp, bfp-test.exp,
bigcore.exp, bitfields.exp, bitfields2.exp, break-entry.exp,
break-interp.exp, break-on-linker-gcd-function.exp,
breakpoint-shadow.exp: Use standard_testfile,
standard_output_file, prepare_for_testing, clean_restart.
2013-06-27 20:47:53 +02:00
|
|
|
standard_testfile .c
|
|
|
|
|
2005-10-03 23:28:04 +02:00
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
|
2016-12-01 21:47:50 +01:00
|
|
|
untested "failed to compile"
|
2005-10-03 23:28:04 +02:00
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
test suite update - gdb.base/[ab]
Convert files gdb.base/[ab]*.exp to use standard_output_file et al.
* a2-run.exp, all-bin.exp, annota1.exp, annota3.exp, anon.exp,
args.exp, arithmet.exp, arrayidx.exp, assign.exp, async-shell.exp,
async.exp, attach-pie-misread.exp, attach-pie-noexec.exp,
attach-twice.exp, attach.exp, auxv.exp, bang.exp, bfp-test.exp,
bigcore.exp, bitfields.exp, bitfields2.exp, break-entry.exp,
break-interp.exp, break-on-linker-gcd-function.exp,
breakpoint-shadow.exp: Use standard_testfile,
standard_output_file, prepare_for_testing, clean_restart.
2013-06-27 20:47:53 +02:00
|
|
|
clean_restart ${binfile}
|
2005-10-03 23:28:04 +02:00
|
|
|
|
|
|
|
if ![runto_main] then {
|
|
|
|
perror "couldn't run to breakpoint"
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
# First, print the array without the indexes
|
|
|
|
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set print array-indexes off" \
|
2016-12-01 21:45:32 +01:00
|
|
|
"set print array-indexes to off"
|
2005-10-03 23:28:04 +02:00
|
|
|
|
|
|
|
gdb_test "print array" \
|
|
|
|
"\\{1, 2, 3, 4\\}" \
|
2016-12-01 21:44:38 +01:00
|
|
|
"print array with array-indexes off"
|
2005-10-03 23:28:04 +02:00
|
|
|
|
|
|
|
# Second, print the same array with the indexes
|
|
|
|
|
2010-06-01 23:29:21 +02:00
|
|
|
gdb_test_no_output "set print array-indexes on" \
|
2016-12-01 21:45:32 +01:00
|
|
|
"set print array-indexes to on"
|
2005-10-03 23:28:04 +02:00
|
|
|
|
|
|
|
gdb_test "print array" \
|
|
|
|
"\\{\\\[0\\\] = 1, \\\[1\\\] = 2, \\\[2\\\] = 3, \\\[3\\\] = 4\\}" \
|
2016-12-01 21:44:38 +01:00
|
|
|
"print array with array-indexes on"
|
2005-10-03 23:28:04 +02:00
|
|
|
|
|
|
|
|