fix typo
[platform/upstream/binutils.git] / gas / testsuite / gas / vtable / vtable.exp
1 #
2 # vtable tests
3 #
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
13     }
14     pass $testname
15 }
16
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*-*"
23 }
24
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 {
30
31     vtable_setup_xfails
32     run_dump_test "inherit0"
33
34     # This particular test is supposed to fail..
35     run_list_test "inherit1" "-al"
36
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 {
51
52         run_dump_test "entry0"
53
54     } else {
55
56         run_dump_test "entry1"
57
58     }
59 }