Add support for m32r-linux target, including a RELA ABI and PIC.
[binutils.git] / gas / testsuite / gas / vtable / vtable.exp
blobcb74b7a7c609c92e4d7585851b2ebbd4b0c5a648
2 # vtable tests
4 proc run_list_test { name opts } {
5 global srcdir subdir
6 set testname "vtable $name"
7 set file $srcdir/$subdir/$name
8 gas_run ${name}.s $opts ">&dump.out"
9 if { [regexp_diff "dump.out" "${file}.l"] } then {
10 fail $testname
11 verbose "output is [file_contents "dump.out"]" 2
12 return
14 pass $testname
17 # These tests are not (yet) supported on some targets.
18 proc vtable_setup_xfails { } {
19 setup_xfail "alpha*-*" "arc-*" "avr-*" "d30v-*"
20 setup_xfail "h8300*-*" "hppa*64*-*-*hpux*"
21 setup_xfail "i370-*" "i860-*" "i960-*" "ia64-*" "ip2k-*"
22 setup_xfail "mn10200-*" "or32-*" "sparc64*-*"
25 # Vtable bits are only supported by ELF targets.
26 if { ( [istarget "*-*-elf*"] || [istarget "*-*-linux*"])
27 && ![istarget *-*-linux*aout*]
28 && ![istarget *-*-linux*ecoff*]
29 && ![istarget *-*-linux*oldld*] } then {
31 vtable_setup_xfails
32 run_dump_test "inherit0"
34 # This particular test is supposed to fail..
35 run_list_test "inherit1" "-al"
37 # The vtable entry results are different on Rel and Rela targets.
38 vtable_setup_xfails
39 if {[istarget "arm*-*"]
40 || [istarget "arc-*"]
41 || [istarget "d10v-*"]
42 || [istarget "dlx-*"]
43 || [istarget "i*86-*"]
44 || ([istarget "mips*-*"]
45 && ! [istarget "mips64*-*-linux*"]
46 && ! [istarget "mips*-*-irix6*"])
47 || [istarget "m68hc*-*"]
48 || [istarget "or32-*"]
49 || [istarget "strongarm*-*"]
50 || [istarget "xscale*-*"] } then {
52 run_dump_test "entry0"
54 } else {
56 run_dump_test "entry1"