Add x86-64-opcode (checks valid opcodes) and x86-64-inval (checks invalid opcodes...
[binutils.git] / gas / testsuite / gas / i386 / i386.exp
blobe66468090ff357db14e329b66f1305ccfc8b3b73
2 # i386 tests
4 proc run_list_test { name opts } {
5 global srcdir subdir
6 set testname "i386 $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 proc gas_64_check { } {
18 global NM
19 global NMFLAGS
20 global srcdir
22 catch "exec $srcdir/lib/run $NM $NMFLAGS --help" nm_help
23 return [regexp "targets:.*x86-64" $nm_help];
26 proc gas_32_check { } {
27 global NM
28 global NMFLAGS
29 global srcdir
31 catch "exec $srcdir/lib/run $NM $NMFLAGS --help" nm_help
32 return [regexp "targets:.*i386" $nm_help];
36 if [expr ([istarget "i*86-*-*"] || [istarget "x86_64-*-*"]) && [gas_32_check]] then {
38 global ASFLAGS
39 set old_ASFLAGS "$ASFLAGS"
40 set ASFLAGS "$ASFLAGS --32"
42 run_list_test "float" "-al"
43 run_list_test "general" "-al --listing-lhs-width=2"
44 run_list_test "inval" "-al"
45 run_list_test "modrm" "-al --listing-lhs-width=2"
46 run_dump_test "naked"
47 run_dump_test "opcode"
48 run_dump_test "intel"
49 run_dump_test "prefix"
50 run_dump_test "amd"
51 run_dump_test "katmai"
52 run_dump_test "jump"
53 run_dump_test "ssemmx2"
54 run_dump_test "sse2"
56 # PIC is only supported on ELF targets.
57 if { ([istarget "*-*-elf*"] || [istarget "*-*-linux*"] )
58 && ![istarget *-*-linux*aout*]
59 && ![istarget *-*-linux*oldld*] } then {
60 run_dump_test "intelpic"
63 # These tests require support for 8 and 16 bit relocs,
64 # so we only run them for ELF and COFF targets.
65 if {[istarget "*-*-elf*"] || [istarget "*-*-linux*"] || [istarget "*-*-coff*"]} then {
66 run_dump_test "reloc"
67 run_dump_test "jump16"
68 run_list_test "white" "-al --listing-lhs-width=3"
71 # Do they only work for ELF?
72 if { ([istarget "*-*-elf*"]
73 || [istarget "*-*-linux*"]
74 && ![istarget *-*-linux*aout*]
75 && ![istarget *-*-linux*oldld*])
76 } then {
77 run_dump_test "relax"
80 set ASFLAGS "$old_ASFLAGS"
83 if [expr ([istarget "i*86-*-*"] || [istarget "x86_64-*-*"]) && [gas_64_check]] then {
85 global ASFLAGS
86 set old_ASFLAGS "$ASFLAGS"
87 set ASFLAGS "$ASFLAGS --64"
89 run_dump_test "x86_64"
90 run_dump_test "x86-64-opcode"
91 run_list_test "x86-64-inval" "-al"
93 set ASFLAGS "$old_ASFLAGS"