84496610aeb544002051b0e907303b32e884e7e4
[deliverable/binutils-gdb.git] / gas / testsuite / gas / i386 / i386.exp
1 #
2 # i386 tests
3 #
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
13 }
14 pass $testname
15 }
16
17 proc gas_64_check { } {
18 global NM
19 global NMFLAGS
20 global srcdir
21
22 catch "exec $srcdir/lib/run $NM $NMFLAGS --help" nm_help
23 return [regexp "targets:.*x86_64" $nm_help];
24 }
25 proc gas_32_check { } {
26 global NM
27 global NMFLAGS
28 global srcdir
29
30 catch "exec $srcdir/lib/run $NM $NMFLAGS --help" nm_help
31 return [regexp "targets:.*i386" $nm_help];
32 }
33
34
35 if [expr ([istarget "i*86-*-*"] || [istarget "x86_64-*-*"]) && [gas_32_check]] then {
36
37 global ASFLAGS
38 set old_ASFLAGS "$ASFLAGS"
39 set ASFLAGS "$ASFLAGS --32"
40
41 run_list_test "float" "-al"
42 run_list_test "general" "-al --listing-lhs-width=2"
43 run_list_test "inval" "-al"
44 run_list_test "modrm" "-al --listing-lhs-width=2"
45 run_dump_test "naked"
46 run_dump_test "opcode"
47 run_dump_test "intel"
48 run_dump_test "prefix"
49 run_dump_test "amd"
50 run_dump_test "katmai"
51 run_dump_test "jump"
52 run_dump_test "ssemmx2"
53 run_dump_test "sse2"
54
55 # These tests require support for 8 and 16 bit relocs,
56 # so we only run them for ELF and COFF targets.
57 if {[istarget "*-*-elf*"] || [istarget "*-*-linux*"] || [istarget "*-*-coff*"]} then {
58 run_dump_test "reloc"
59 run_dump_test "jump16"
60 run_list_test "white" "-al --listing-lhs-width=3"
61 }
62 set ASFLAGS "$old_ASFLAGS"
63 }
64 if [istarget "x86_64-*-*"] then {
65
66 global ASFLAGS
67 set old_ASFLAGS "$ASFLAGS"
68 set ASFLAGS "$ASFLAGS --64"
69
70 run_dump_test "x86_64"
71
72 set ASFLAGS "$old_ASFLAGS"
73 }
This page took 0.031387 seconds and 4 git commands to generate.