diff options
author | Tom Tromey <tromey@adacore.com> | 2021-04-19 07:16:34 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2021-04-19 07:16:34 -0600 |
commit | 392e0bcc0e4088ff6c31ed43a6232e709bf52751 (patch) | |
tree | ce93c05df23b54f34971be809cc117fe546d9e1b /gdb/testsuite/gdb.opt | |
parent | 9a8041fd94b7b5c12cb802f87648cce954d18d2a (diff) | |
download | binutils-392e0bcc0e4088ff6c31ed43a6232e709bf52751.zip binutils-392e0bcc0e4088ff6c31ed43a6232e709bf52751.tar.gz binutils-392e0bcc0e4088ff6c31ed43a6232e709bf52751.tar.bz2 |
Fix kfail patterns in inline-locals.exp
PR gdb/27742 points out that my recent change to
print_variable_and_value caused a regression in inline-locals.exp. I
can't reproduce this, but I came up with this patch based on the
output shown in the bug.
gdb/testsuite/ChangeLog
2021-04-19 Tom Tromey <tromey@adacore.com>
PR gdb/27742:
* gdb.opt/inline-locals.exp: Update kfail patterns.
Diffstat (limited to 'gdb/testsuite/gdb.opt')
-rw-r--r-- | gdb/testsuite/gdb.opt/inline-locals.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.opt/inline-locals.exp b/gdb/testsuite/gdb.opt/inline-locals.exp index d0acb4a..ff9dd1b 100644 --- a/gdb/testsuite/gdb.opt/inline-locals.exp +++ b/gdb/testsuite/gdb.opt/inline-locals.exp @@ -45,7 +45,7 @@ if { ! $no_frames } { gdb_test "info frame" ".*inlined into frame.*" "func1 inlined 2" set pass_re "array = \\{0 <repeats 64 times>\\}" set kfail_re [multi_line $pass_re \ - "array = {<optimized out> <repeats 64 times>}"] + "array = <optimized out>"] gdb_test_multiple "info locals" "info locals above bar 2" { -re -wrap $pass_re { pass $gdb_test_name @@ -94,7 +94,7 @@ if { ! $no_frames } { gdb_test "info frame" ".*inlined into frame.*" "func1 inlined 3" set pass_re "array = {$decimal, \[^\r\n\]*}" set kfail_re [multi_line $pass_re \ - "array = {<optimized out> <repeats 64 times>}"] + "array = <optimized out>"] gdb_test_multiple "info locals" "info locals above bar 3" { -re -wrap $pass_re { pass $gdb_test_name |