Fix gdb.ada bp_fun_addr failure due to conflict between fun 'a' and s-dimmks.ads...
authorPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Sun, 23 Dec 2018 20:05:58 +0000 (21:05 +0100)
committerPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Mon, 24 Dec 2018 12:11:12 +0000 (13:11 +0100)
The test fails (timeout) due to:
  (gdb) PASS: gdb.ada/bp_fun_addr.exp: break *a'address
  run
  Starting program: /bd/home/philippe/gdb/git/build_info_t/gdb/testsuite/outputs/gdb.ada/bp_fun_addr/a
  Multiple matches for a
  [0] cancel
  [1] a at /bd/home/philippe/gdb/git/info_t/gdb/testsuite/gdb.ada/bp_fun_addr/a.adb:18
  [2] system.dim.mks.a at s-dimmks.ads:115
  > FAIL: gdb.ada/bp_fun_addr.exp: run until breakpoint at a'address (timeout)
  testcase /home/philippe/gdb/git/build_info_t/gdb/testsuite/../../../info_t/gdb/testsuite/gdb.ada/bp_fun_addr.exp completed in 10 seconds

Fix this by using a fun name that has more chances to be unique.

2018-12-24  Philippe Waroquiers  <philippe.waroquiers@skynet.be>

* gdb.ada/bp_fun_addr/a.adb (a): Rename to bp_fun_addr.
Filename a.adb changed to bp_fun_addr.adb.
gdb.ada/bp_fun_addr.exp: Update test accordingly.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.ada/bp_fun_addr.exp
gdb/testsuite/gdb.ada/bp_fun_addr/a.adb [deleted file]
gdb/testsuite/gdb.ada/bp_fun_addr/bp_fun_addr.adb [new file with mode: 0644]

index 1ac687e17d09f78340af7b81b82047ad46061007..fda5318990bdd176ce98cad5d0c5b7d642659f37 100644 (file)
@@ -1,3 +1,9 @@
+2018-12-24  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
+
+       * gdb.ada/bp_fun_addr/a.adb (a): Rename to bp_fun_addr.
+       Filename a.adb changed to bp_fun_addr.adb.
+       gdb.ada/bp_fun_addr.exp: Update test accordingly.
+
 2018-12-21  Jan Vrany  <jan.vrany@fit.cvut.cz>
 
        * lib/gdb.exp (gdb_compile): Add new nopie flag enforce
index b037d4353833debf35f7d5fe8cff1e9c456fe003..38a260967788d6871c8e89b54b8f86c87ecc1ea1 100644 (file)
@@ -17,7 +17,7 @@ load_lib "ada.exp"
 
 if { [skip_ada_tests] } { return -1 }
 
-standard_ada_testfile a
+standard_ada_testfile bp_fun_addr
 
 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
     return -1
@@ -25,11 +25,11 @@ if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
 
 clean_restart ${testfile}
 
-gdb_test "break *a'address" \
-         "Breakpoint \[0-9\]+ at.*: file .*a.adb, line \[0-9\]+."
+gdb_test "break *bp_fun_addr'address" \
+         "Breakpoint \[0-9\]+ at.*: file .*bp_fun_addr.adb, line \[0-9\]+."
 
 gdb_run_cmd
 gdb_test "" \
-         "Breakpoint $decimal, a \\(\\).*" \
-         "run until breakpoint at a'address"
+         "Breakpoint $decimal, bp_fun_addr \\(\\).*" \
+         "run until breakpoint at bp_fun_addr'address"
 
diff --git a/gdb/testsuite/gdb.ada/bp_fun_addr/a.adb b/gdb/testsuite/gdb.ada/bp_fun_addr/a.adb
deleted file mode 100644 (file)
index 00e2e86..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
---  Copyright 2016-2018 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/>.
-
-procedure A is
-begin
-   null;
-end A;
diff --git a/gdb/testsuite/gdb.ada/bp_fun_addr/bp_fun_addr.adb b/gdb/testsuite/gdb.ada/bp_fun_addr/bp_fun_addr.adb
new file mode 100644 (file)
index 0000000..2faf6da
--- /dev/null
@@ -0,0 +1,19 @@
+--  Copyright 2016-2018 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/>.
+
+procedure Bp_Fun_Addr is
+begin
+   null;
+end Bp_Fun_Addr;
This page took 0.032718 seconds and 4 git commands to generate.