diff options
author | Michael Snyder <msnyder@specifix.com> | 2002-06-06 19:08:18 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@specifix.com> | 2002-06-06 19:08:18 +0000 |
commit | 0a4987c316eb77f6808390b5c74addddeb3e41aa (patch) | |
tree | 07ccf61f2e35233d66cf60ca7e13a342217d1172 /gdb/testsuite/gdb.base | |
parent | 9a5b8072cf28a3bc192d976d42230490380bc620 (diff) | |
download | gdb-0a4987c316eb77f6808390b5c74addddeb3e41aa.tar.gz |
2002-06-06 Michael Snyder <msnyder@redhat.com>
* gdb.base/long_long.exp: Add check for sizeof (long double).
Diffstat (limited to 'gdb/testsuite/gdb.base')
-rw-r--r-- | gdb/testsuite/gdb.base/long_long.exp | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/gdb/testsuite/gdb.base/long_long.exp b/gdb/testsuite/gdb.base/long_long.exp index 7084a8deee1..55086d76755 100644 --- a/gdb/testsuite/gdb.base/long_long.exp +++ b/gdb/testsuite/gdb.base/long_long.exp @@ -114,6 +114,14 @@ gdb_expect { default { } } +set sizeof_long_double 8 +send_gdb "print sizeof(long double)\n" +gdb_expect { + -re ".* = 4.*$gdb_prompt $" { set sizeof_long_double 4 } + -re ".*$gdb_prompt $" { } + default { } +} + gdb_test "n 4" ".*38.*" "get to known place" # Check the hack for long long prints. @@ -146,11 +154,10 @@ if { $sizeof_ptr == 2 } { } gdb_test "p/c oct" ".*'w'.*" -if { $sizeof_double == 8 } { - -# ARM floating point numbers are not strictly little endian or big endian, -# but a hybrid. They are in little endian format with the two words -# swapped in big endian format. +if { $sizeof_double == 8 || $sizeof_long_double == 8 } { + # ARM floating point numbers are not strictly little endian or big endian, + # but a hybrid. They are in little endian format with the two words + # swapped in big endian format. if { [istarget "arm*-*-*"] || \ [istarget "xscale*-*-*"] || \ @@ -239,7 +246,7 @@ if { $target_bigendian_p } { gdb_test "x/c &oct" ".*-89 .*" # FIXME GDB's output is correct, but this longer match fails. # gdb_test "x/c &oct" ".*-89 '\\\\247'.*" - if { $sizeof_double == 8 } { + if { $sizeof_double == 8 || $sizeof_long_double == 8 } { gdb_test "x/f &oct" ".*-5.9822653797615723e-120.*" } else { gdb_test "x/f &oct" ".*-2.42716126e-15.*" |