]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/testsuite/gas/i386/i386.exp
Add 'add" as an offial alias for "addu"
[thirdparty/binutils-gdb.git] / gas / testsuite / gas / i386 / i386.exp
CommitLineData
252b5132
RH
1#
2# i386 tests
3#
4proc 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
13 }
14 pass $testname
15}
16
17
18if [istarget "i*86-*-*"] then {
19
20 run_list_test "float" "-al"
21 run_list_test "general" "-al --listing-lhs-width=2"
22 run_list_test "inval" "-al"
23 run_list_test "modrm" "-al --listing-lhs-width=2"
3f9ed93b 24 run_dump_test "naked"
252b5132
RH
25 run_dump_test "opcode"
26 run_dump_test "prefix"
27 run_dump_test "amd"
c608c12e 28 run_dump_test "katmai"
252b5132
RH
29
30 # The reloc and white tests require support for 8 and 16 bit
b7be1db6
AM
31 # relocs, so we only run them for ELF and COFF targets.
32 if {[istarget "*-*-elf*"] || [istarget "*-*-linux*"] || [istarget "*-*-coff*"]} then {
252b5132
RH
33 run_dump_test "reloc"
34 run_list_test "white" "-al --listing-lhs-width=3"
35 }
36}