2008-02-18 H.J. Lu <hongjiu.lu@intel.com>
[deliverable/binutils-gdb.git] / gas / testsuite / gas / cfi / cfi.exp
CommitLineData
d04428bd
AM
1if ![is_elf_format] then {
2 return
3}
fa87b337 4
b6460688
L
5proc gas_x86_64_check { } {
6 global NM
7 global NMFLAGS
2ebaa23b 8
b6460688
L
9 set status [gas_host_run "$NM $NMFLAGS --help" ""]
10 return [regexp "targets:.*x86-64" [lindex $status 1]];
11}
12
13proc gas_x86_32_check { } {
14 global NM
15 global NMFLAGS
16
17 set status [gas_host_run "$NM $NMFLAGS --help" ""]
18 return [regexp "targets:.*i386" [lindex $status 1]];
19}
20
21if { [istarget "i*86-*-*"] || [istarget "x86_64-*-*"] } then {
22
23 global ASFLAGS
24 set old_ASFLAGS "$ASFLAGS"
25
26 if { [gas_x86_64_check] } then {
27 set ASFLAGS "$ASFLAGS --64"
28 run_dump_test "cfi-x86_64"
29 set ASFLAGS "$old_ASFLAGS"
30 }
31
32 if { [gas_x86_32_check] } then {
33 set ASFLAGS "$ASFLAGS --32"
34 run_dump_test "cfi-i386"
35 set ASFLAGS "$old_ASFLAGS"
36 }
f37f01cf 37
d04428bd
AM
38} elseif { [istarget alpha*-*-*] } then {
39 run_dump_test "cfi-alpha-1"
40 run_dump_test "cfi-alpha-2"
41 run_dump_test "cfi-alpha-3"
f37f01cf 42
75e21f08
JJ
43} elseif { [istarget ppc*-*-*] || [istarget powerpc*-*-*] } then {
44 run_dump_test "cfi-ppc-1"
45
46} elseif { [istarget s390*-*-*] } then {
47 run_dump_test "cfi-s390-1"
48 if { [istarget s390x*-*-*] } then {
49 run_dump_test "cfi-s390x-1"
50 }
51
c04898f8
AS
52} elseif { [istarget "m68*-*"] } then {
53 run_dump_test "cfi-m68k"
54
364b6d8b
JJ
55} elseif { [istarget sparc*-*-*] } then {
56 global NM
57 global NMFLAGS
364b6d8b 58
7f6a71ff 59 set nm_status [gas_host_run "$NM $NMFLAGS --help" ""]
364b6d8b 60 run_dump_test "cfi-sparc-1"
7f6a71ff 61 if { [regexp "elf64\[_-\]sparc" [lindex $nm_status 1]] } then {
364b6d8b
JJ
62 run_dump_test "cfi-sparc64-1"
63 }
2ce4cc60
KK
64
65} elseif [istarget "sh*-*"] then {
66 if { [istarget sh64*-*-*] || [istarget sh5*-*-*] } then {
67 } else {
68 run_dump_test "cfi-sh-1"
69 }
70
a394c00f
NC
71} elseif { [istarget "arm*-*"] || [istarget "xscale*-*"] } then {
72 run_dump_test "cfi-arm-1"
73
5862107c
EC
74} elseif { [istarget "mips*-*"] } then {
75 run_dump_test "cfi-mips-1"
406601a1
RC
76} elseif { [istarget "hppa*-linux*"] } then {
77 run_dump_test "cfi-hppa-1"
d04428bd
AM
78} else {
79 return
f37f01cf 80}
fa87b337 81
d04428bd
AM
82run_list_test "cfi-diag-1" ""
83run_dump_test "cfi-common-1"
84run_dump_test "cfi-common-2"
cdfbf930 85run_dump_test "cfi-common-3"
289040ca 86run_dump_test "cfi-common-4"
ae424f82 87run_dump_test "cfi-common-5"
f3a503f6
TS
88
89# MIPS doesn't support PC relative cfi directives
90if { ![istarget "mips*-*"] } then {
91 run_dump_test "cfi-common-6"
92}
This page took 0.219612 seconds and 4 git commands to generate.