summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.ada/pckd_arr_ren.exp
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@adacore.com>2014-03-17 08:41:48 -0700
committerJoel Brobecker <brobecker@adacore.com>2014-03-17 08:45:55 -0700
commitf7c77d9323a3dcd6e52a8038d0cdab0748e5bc62 (patch)
treed8b52a042d8dcd24e739ec50f0b819a14dca6356 /gdb/testsuite/gdb.ada/pckd_arr_ren.exp
parent11aa919a07114ba99a99a7dcd43079440bbe5161 (diff)
[testsuite/Ada] New testcase for packed array renaming.
gdb/testsuite/ChangeLog: * gdb.ada/pckd_arr_ren: New testcase.
Diffstat (limited to 'gdb/testsuite/gdb.ada/pckd_arr_ren.exp')
-rw-r--r--gdb/testsuite/gdb.ada/pckd_arr_ren.exp33
1 files changed, 33 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.ada/pckd_arr_ren.exp b/gdb/testsuite/gdb.ada/pckd_arr_ren.exp
new file mode 100644
index 0000000000..a031d3ef7e
--- /dev/null
+++ b/gdb/testsuite/gdb.ada/pckd_arr_ren.exp
@@ -0,0 +1,33 @@
+# Copyright 2014 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/>.
+
+load_lib "ada.exp"
+
+if { [skip_ada_tests] } { return -1 }
+
+standard_ada_testfile foo
+
+if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
+ return -1
+}
+
+clean_restart ${testfile}
+
+set bp_location [gdb_get_line_number "STOP" ${testdir}/foo.adb]
+runto "foo.adb:$bp_location"
+
+gdb_test "print A2" \
+ "= (<ref>\\s*)?\\(false, false\\)" \
+ "print var"