diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2007-01-26 20:53:15 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2007-01-26 20:53:15 +0000 |
commit | e784b426e6a8bba4407def53f1cc3a318be7abd1 (patch) | |
tree | 12c6aec77f744991cfab1bcee99fd406ff49e66d /gdb/testsuite/gdb.arch | |
parent | 9a01813aed1b24da9eaa3616d58d24ce92e0cb23 (diff) | |
download | gdb-e784b426e6a8bba4407def53f1cc3a318be7abd1.zip gdb-e784b426e6a8bba4407def53f1cc3a318be7abd1.tar.gz gdb-e784b426e6a8bba4407def53f1cc3a318be7abd1.tar.bz2 |
* gdb.base/charsign.exp, gdb.base/charsign.c: New files.
* gdb.arch/i386-sse.exp: Check $xmm.v16_int8 printing as a number array.
* gdb.base/printcmds.exp: Sign-provided CHARs now became arrays.
* gdb.base/setvar.exp: Likewise.
Diffstat (limited to 'gdb/testsuite/gdb.arch')
-rw-r--r-- | gdb/testsuite/gdb.arch/i386-sse.exp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.arch/i386-sse.exp b/gdb/testsuite/gdb.arch/i386-sse.exp index e55d53c..d0289cb 100644 --- a/gdb/testsuite/gdb.arch/i386-sse.exp +++ b/gdb/testsuite/gdb.arch/i386-sse.exp @@ -83,7 +83,10 @@ 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\\}.*" \ - "check contents of %xmm$r" + "check float contents of %xmm$r" + gdb_test "print \$xmm$r.v16_int8" \ + ".. = \\{(-?\[0-9\]+ '.*', ){15}-?\[0-9\]+ '.*'\\}.*" \ + "check int8 contents of %xmm$r" } foreach r {0 1 2 3 4 5 6 7} { |