gas/
[deliverable/binutils-gdb.git] / gas / testsuite / gas / sparc / sparc.exp
1 # Some generic SPARC and SPARC64 tests
2
3 # FIXME: The tests here aren't really bullet proof. A mistake in the opcode
4 # table can slip through since we use the same table for assembly and
5 # disassembly. The way to fix this is to include a hex dump of the insns
6 # and test that as well. Later.
7
8 # Find out if these binutils are either sparc64*-*-* or
9 # sparc*-*-* with --enable-targets=sparc64-*-*
10 proc gas_64_check { } {
11 global NM
12 global NMFLAGS
13
14 set status [gas_host_run "$NM $NMFLAGS --help" ""]
15 return [regexp "elf64\[_-\]sparc" [lindex $status 1]]
16 }
17
18 proc sparc_elf_setup { } {
19 setup_xfail "sparc*-*-*aout*" "sparc*-*-sunos4*"
20 setup_xfail "sparc*-fujitsu-none" "sparc*-*-*n*bsd*"
21 setup_xfail "sparc*-*-coff" "sparc*-*-lynxos*"
22 clear_xfail "sparc64*-*-*n*bsd*"
23 clear_xfail "sparc*-*-netbsdelf*"
24 }
25
26 if [istarget sparc*-*-*] {
27 run_dump_test "synth"
28 # The next three tests are ELF only.
29 sparc_elf_setup
30 run_dump_test "unalign"
31 sparc_elf_setup
32 run_dump_test "pcrel"
33 sparc_elf_setup
34 run_dump_test "plt"
35 if [gas_64_check] {
36 run_dump_test "asi"
37 run_dump_test "membar"
38 run_dump_test "prefetch"
39 run_dump_test "set64"
40 run_dump_test "synth64"
41 run_dump_test "rdpr"
42 run_dump_test "rdhpr"
43 run_dump_test "wrpr"
44 run_dump_test "wrhpr"
45 run_dump_test "window"
46 run_dump_test "reloc64"
47 run_dump_test "pcrel64"
48 run_dump_test "plt64"
49 }
50 run_dump_test "v9branch1"
51 run_dump_test "v9branch2"
52 run_dump_test "v9branch3"
53 run_dump_test "v9branch4"
54 run_dump_test "v9branch5"
55
56 run_list_test "pr4587" ""
57 }
58
59 if [istarget sparc-*-vxworks*] {
60 run_dump_test "vxworks-pic"
61 }
62
63 if [istarget sparclet*-*-*] {
64 run_dump_test "splet"
65 run_dump_test "splet-2"
66 }
This page took 0.032441 seconds and 4 git commands to generate.