diff options
author | Jim Blandy <jimb@codesourcery.com> | 2004-06-21 05:00:37 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2004-06-21 05:00:37 +0000 |
commit | 3c6470b41a24e35e1ddfa489936027b0fcf78f35 (patch) | |
tree | f006f5119d9b17ee7c3650d3bccda7c7ad777375 /gdb | |
parent | bee3990c20aeb82d57b97c0597cc59e2c4e9a6a7 (diff) | |
download | gdb-3c6470b41a24e35e1ddfa489936027b0fcf78f35.tar.gz |
Fix PR testsuite/1680.
* gdb.arch/i386-sse.exp: Properly quote curly braces in
regular expressions.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.arch/i386-sse.exp | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 705baa81a66..24ccaa06747 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2004-06-20 Jim Blandy <jimb@redhat.com> + + Fix PR testsuite/1680. + * gdb.arch/i386-sse.exp: Properly quote curly braces in + regular expressions. + 2004-06-19 Michael Chastain <mec.gnu@mindspring.com> Fix PR testsuite/1679. diff --git a/gdb/testsuite/gdb.arch/i386-sse.exp b/gdb/testsuite/gdb.arch/i386-sse.exp index 8180ec48b1f..702ee7127a5 100644 --- a/gdb/testsuite/gdb.arch/i386-sse.exp +++ b/gdb/testsuite/gdb.arch/i386-sse.exp @@ -72,7 +72,7 @@ gdb_continue_to_breakpoint "continue to first breakpoint in main" foreach r {0 1 2 3 4 5 6 7} { gdb_test "print \$xmm$r.v4_float" \ - ".. = {$r, $r.25, $r.5, $r.75}.*" \ + ".. = \\{$r, $r.25, $r.5, $r.75\\}.*" \ "check contents of %xmm$r" } @@ -87,6 +87,6 @@ gdb_continue_to_breakpoint "continue to second breakpoint in main" foreach r {0 1 2 3 4 5 6 7} { gdb_test "print data\[$r\]" \ - ".. = {f = {[expr $r + 10], $r.25, $r.5, $r.75}}.*" \ + ".. = \\{f = \\{[expr $r + 10], $r.25, $r.5, $r.75\\}\\}.*" \ "check contents of data\[$r\]" } |