aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.ada
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2023-08-15 11:04:17 -0600
committerTom Tromey <tromey@adacore.com>2023-08-16 11:43:40 -0600
commit94c5098e4d9d5b58a6db31064398fb4941ab5efb (patch)
treeacc0e32f8c4b0e2cca1e586a75b050d09f85c2ab /gdb/testsuite/gdb.ada
parent100dbc6de52e6d4bfaf4b330ee923267e56e936c (diff)
downloadbinutils-94c5098e4d9d5b58a6db31064398fb4941ab5efb.zip
binutils-94c5098e4d9d5b58a6db31064398fb4941ab5efb.tar.gz
binutils-94c5098e4d9d5b58a6db31064398fb4941ab5efb.tar.bz2
Fix obvious bug in aggregate expression
I found an obvious bug in Ada aggregate expression handling: if (vvo != nullptr) error (_("Invalid record component association.")); name = vvo->get_symbol ()->natural_name (); Here the code errors when vvo is not null -- and then proceeds to use vvo. This hasn't caused a crash because, I believe, there's currently no way to reach this code in the null case. However, I'm not really willing to assert this... Fixing this shows another bug, which is that due to the way the parser works, a field name in an aggregate expression might erroneously be fully qualified if some global variable with the same base name exists. The included test case triggers both bugs. Note that the test includes a confounding case for array aggregates as well, but as these are harder to fix, I've left it as kfail. As this is Ada-specific, and has already been tested internally at AdaCore, I am checking it in.
Diffstat (limited to 'gdb/testsuite/gdb.ada')
-rw-r--r--gdb/testsuite/gdb.ada/assoc.exp43
-rw-r--r--gdb/testsuite/gdb.ada/assoc/main.adb22
-rw-r--r--gdb/testsuite/gdb.ada/assoc/pck.ads29
-rw-r--r--gdb/testsuite/gdb.ada/assoc/xtra.adb21
-rw-r--r--gdb/testsuite/gdb.ada/assoc/xtra.ads24
5 files changed, 139 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.ada/assoc.exp b/gdb/testsuite/gdb.ada/assoc.exp
new file mode 100644
index 0000000..9ed1a67
--- /dev/null
+++ b/gdb/testsuite/gdb.ada/assoc.exp
@@ -0,0 +1,43 @@
+# Copyright 2023 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"
+
+require allow_ada_tests
+
+standard_ada_testfile main
+
+if {[gdb_compile_ada "${srcfile}" "${binfile}" executable debug] != ""} {
+ return -1
+}
+
+clean_restart ${testfile}
+
+set bp_location [gdb_get_line_number "BREAK" ${testdir}/main.adb]
+runto "main.adb:$bp_location"
+
+gdb_test_multiple "print pck.value := (Left => 3, Center => 7, Pck.Right => 2)" \
+ "assign to value" {
+ -wrap -re " = \\(3, 7, 2\\)" {
+ pass $gdb_test_name
+ }
+ -wrap -re " = \\(3, 2, 2\\)" {
+ setup_kfail "aggregate expression bug" *-*-*
+ fail $gdb_test_name
+ }
+ }
+
+gdb_test "print pck.svalue := (center => 99)" \
+ [string_to_regexp " = (center => 99)"]
diff --git a/gdb/testsuite/gdb.ada/assoc/main.adb b/gdb/testsuite/gdb.ada/assoc/main.adb
new file mode 100644
index 0000000..3eda932
--- /dev/null
+++ b/gdb/testsuite/gdb.ada/assoc/main.adb
@@ -0,0 +1,22 @@
+-- Copyright 2023 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/>.
+
+With Pck;
+with Xtra;
+
+procedure Main is
+begin
+ Xtra.Do_Nothing (Pck.Value); -- BREAK
+end Main;
diff --git a/gdb/testsuite/gdb.ada/assoc/pck.ads b/gdb/testsuite/gdb.ada/assoc/pck.ads
new file mode 100644
index 0000000..8140bea
--- /dev/null
+++ b/gdb/testsuite/gdb.ada/assoc/pck.ads
@@ -0,0 +1,29 @@
+-- Copyright 2023 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/>.
+
+package Pck is
+ type Posn is (Left, Center, Right);
+ type My_Array is array (Posn) of Integer;
+
+ Value : My_Array := (Left => 1, Center => 2, Right => 3);
+
+ type Structured is
+ record
+ Center : Integer;
+ end record;
+
+ SValue : Structured := (Center => 23);
+
+end Pck;
diff --git a/gdb/testsuite/gdb.ada/assoc/xtra.adb b/gdb/testsuite/gdb.ada/assoc/xtra.adb
new file mode 100644
index 0000000..e0a16c0
--- /dev/null
+++ b/gdb/testsuite/gdb.ada/assoc/xtra.adb
@@ -0,0 +1,21 @@
+-- Copyright 2023 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/>.
+
+package body Xtra is
+ procedure Do_Nothing (Buffer: in out Pck.My_Array) is
+ begin
+ null;
+ end Do_Nothing;
+end Xtra;
diff --git a/gdb/testsuite/gdb.ada/assoc/xtra.ads b/gdb/testsuite/gdb.ada/assoc/xtra.ads
new file mode 100644
index 0000000..c42d197
--- /dev/null
+++ b/gdb/testsuite/gdb.ada/assoc/xtra.ads
@@ -0,0 +1,24 @@
+-- Copyright 2023 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/>.
+
+with Pck;
+
+package Xtra is
+ -- Confounding.
+ Center : Pck.Posn := Pck.Right;
+ Right : Pck.Posn := Pck.Left;
+
+ procedure Do_Nothing (Buffer: in out Pck.My_Array);
+end Xtra;