testsuite: Define and use gdb_target_symbol_prefix_flags_asm.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.arch / i386-float.exp
CommitLineData
32d0add0 1# Copyright (C) 2009-2015 Free Software Foundation, Inc.
433730c9
PA
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16
17# This file is part of the gdb testsuite.
18
19# Test the x87 floating point information printout.
20
21if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } then {
22 verbose "Skipping i386 tests for x87 floating point support."
23 return
24}
25
26standard_testfile .S
27
28# some targets have leading underscores on assembly symbols.
f01dcfd9 29set additional_flags [gdb_target_symbol_prefix_flags_asm]
433730c9
PA
30
31if { [prepare_for_testing break.exp $testfile $srcfile [list debug $additional_flags]] } {
32 return -1
33}
34
35if ![runto_main] then {
36 fail "Can't run to main"
37 return 0
38}
39
40gdb_test "stepi" ".*fldt.*" "first stepi"
41gdb_test "info float" ".*R7: Empty 0x00000000000000000000\r\n.*"
42gdb_test "stepi" ".*ret.*" "second stepi"
43gdb_test "info float" ".*=>R7: Valid 0xbffee922191107450000 .*"
This page took 0.359741 seconds and 4 git commands to generate.