[PUSHED] gdb/testsuite: Remove paths and make test names unique
Andrew Burgess
andrew.burgess@embecosm.com
Fri Mar 13 23:35:50 GMT 2020
Removes paths from some test names, and make the test names unique in
the gdb.base/break-interp.exp test file.
gdb/testsuite/ChangeLog:
* gdb.base/break-interp.exp: Use the tail of the filename, not the
full path in the test name.
(test_ld): Add some with_test_prefix blocks to make test names
unique.
---
gdb/testsuite/ChangeLog | 7 +++++++
gdb/testsuite/gdb.base/break-interp.exp | 18 +++++++++++-------
2 files changed, 18 insertions(+), 7 deletions(-)
diff --git a/gdb/testsuite/gdb.base/break-interp.exp b/gdb/testsuite/gdb.base/break-interp.exp
index 3646a1a413a..6b03c59c817 100644
--- a/gdb/testsuite/gdb.base/break-interp.exp
+++ b/gdb/testsuite/gdb.base/break-interp.exp
@@ -411,18 +411,22 @@ proc test_ld {file ifmain trynosym displacement} {
reach $solib_bp "run" $displacement 1
- gdb_test_no_output "set verbose off"
- gdb_test "bt" "#0 +\[^\r\n\]*\\m(__GI_)?$solib_bp\\M.*" "dl bt"
- gdb_test_no_output "set verbose on"
+ with_test_prefix "first backtrace" {
+ gdb_test_no_output "set verbose off"
+ gdb_test "bt" "#0 +\[^\r\n\]*\\m(__GI_)?$solib_bp\\M.*" "dl bt"
+ gdb_test_no_output "set verbose on"
+ }
if $ifmain {
reach "main" continue "NONE"
reach "libfunc" continue "NONE"
- gdb_test_no_output "set verbose off"
- gdb_test "bt" "#0 +\[^\r\n\]*\\mlibfunc\\M\[^\r\n\]*\r\n#1 +\[^\r\n\]*\\mmain\\M.*" "main bt"
- gdb_test_no_output "set verbose on"
+ with_test_prefix "second backtrace" {
+ gdb_test_no_output "set verbose off"
+ gdb_test "bt" "#0 +\[^\r\n\]*\\mlibfunc\\M\[^\r\n\]*\r\n#1 +\[^\r\n\]*\\mmain\\M.*" "main bt"
+ gdb_test_no_output "set verbose on"
+ }
}
# Try re-run if the new PIE displacement takes effect.
@@ -609,7 +613,7 @@ foreach_with_prefix ldprelink {NO YES} {
file delete "${interp}.debug"
}
- if ![prelink$ldprelink $interp "$interp, second time"] {
+ if ![prelink$ldprelink $interp "[file tail $interp], second time"] {
continue
}
--
2.14.5
More information about the Gdb-patches
mailing list