diff options
author | Pierre-Marie de Rodat <derodat@adacore.com> | 2015-03-10 09:51:27 +0100 |
---|---|---|
committer | Pierre-Marie de Rodat <derodat@adacore.com> | 2015-04-01 15:06:39 +0200 |
commit | 3c724c8ca91ee8304ba355f681ccd906f0e9725b (patch) | |
tree | 2ee5d701d9e3c104c6088a138777aff673140d6a /gdb/testsuite/gdb.btrace/tailcall.exp | |
parent | 5445da1b7656f82e7892d862895dfd9e7c16889c (diff) | |
download | gdb-3c724c8ca91ee8304ba355f681ccd906f0e9725b.zip gdb-3c724c8ca91ee8304ba355f681ccd906f0e9725b.tar.gz gdb-3c724c8ca91ee8304ba355f681ccd906f0e9725b.tar.bz2 |
Share the "multi_line" helper among all testcases
gdb/testsuite/ChangeLog:
* gdb.ada/complete.exp: Remove "multi_line".
* gdb.ada/info_exc.exp: Remove "multi_line".
* gdb.ada/packed_tagged.exp: Remove "multi_line".
* gdb.ada/ptype_field.exp: Remove "multi_line".
* gdb.ada/sym_print_name.exp: Remove "multi_line".
* gdb.ada/tagged.exp: Remove "multi_line".
* gdb.btrace/buffer-size.exp: Replace [join [list ...]] with
[multi_line ...]
* gdb.btrace/delta.exp: Likewise.
* gdb.btrace/exception.exp: Likewise.
* gdb.btrace/function_call_history.exp: Likewise.
* gdb.btrace/instruction_history.exp: Likewise.
* gdb.btrace/nohist.exp: Likewise.
* gdb.btrace/record_goto.exp: Likewise.
* gdb.btrace/segv.exp: Likewise.
* gdb.btrace/stepi.exp: Likewise.
* gdb.btrace/tailcall.exp: Likewise.
* gdb.btrace/unknown_functions.exp: Likewise.
* gdb.dwarf2/dw2-undefined-ret-addr.exp: Likewise.
* lib/gdb.exp: Add the "multi_line" helper.
Diffstat (limited to 'gdb/testsuite/gdb.btrace/tailcall.exp')
-rw-r--r-- | gdb/testsuite/gdb.btrace/tailcall.exp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/testsuite/gdb.btrace/tailcall.exp b/gdb/testsuite/gdb.btrace/tailcall.exp index b2ce415..18b26cb 100644 --- a/gdb/testsuite/gdb.btrace/tailcall.exp +++ b/gdb/testsuite/gdb.btrace/tailcall.exp @@ -56,31 +56,31 @@ gdb_test_no_output "record btrace" gdb_test "next 2" # show the flat branch trace -gdb_test "record function-call-history 1" [join [list \ +gdb_test "record function-call-history 1" [multi_line \ "1\tmain" \ "2\tfoo" \ "3\tbar" \ "4\tmain" \ - ] "\r\n"] "flat" + ] "flat" # show the branch trace with calls indented -gdb_test "record function-call-history /c 1" [join [list \ +gdb_test "record function-call-history /c 1" [multi_line \ "1\tmain" \ "2\t foo" \ "3\t bar" \ "4\tmain" \ - ] "\r\n"] "indented" + ] "indented" # go into bar gdb_test "record goto 4" ".*bar \\(\\) at .*tailcall.c:24\r\n.*" # check the backtrace -gdb_test "backtrace" [join [list \ +gdb_test "backtrace" [multi_line \ "#0.*bar \\(\\) at tailcall.c:24" \ "#1.*foo \\(\\) at tailcall.c:29" \ "#2.*main \\(\\) at tailcall.c:37" \ "Backtrace stopped: not enough registers or memory available to unwind further" \ - ] "\r\n"] + ] # walk the backtrace gdb_test "up" "#1\[^\r\n\]*foo \\(\\) at tailcall.c:29\r\n.*" "up to foo" |