[ gas/testsuite/ChangeLog ]
[deliverable/binutils-gdb.git] / gas / testsuite / gas / maxq20 / maxq20.exp
CommitLineData
7499d566
NC
1#
2# MAXQ20 tests
3#
4proc run_list_test { name opts } {
5 global srcdir subdir
6 set testname "maxq20 $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
17proc gas_64_check { } {
18 global NM
19 global NMFLAGS
20 global srcdir
21
22 catch "exec $srcdir/lib/run $NM $NMFLAGS --help" nm_help
80f19ede 23 return [regexp "targets:.*maxq" $nm_help]
7499d566
NC
24}
25
26proc gas_32_check { } {
27 global NM
28 global NMFLAGS
29 global srcdir
30
31 catch "exec $srcdir/lib/run $NM $NMFLAGS --help" nm_help
80f19ede 32 return [regexp "targets:.*maxq" $nm_help]
7499d566
NC
33}
34
35
36if [expr ([istarget "maxq-*-*"] || [istarget "maxq-coff-*-*"]) && [gas_32_check]] then {
37
38 global ASFLAGS
39 set old_ASFLAGS "$ASFLAGS"
40 set ASFLAGS "$ASFLAGS"
41
42 run_dump_test "range"
43 run_dump_test "data3"
44 run_dump_test "data2"
45 run_dump_test "call"
46 run_dump_test "jump"
47 run_dump_test "logical"
48 run_dump_test "math"
49 run_dump_test "bits"
50 run_dump_test "data1"
51 run_dump_test "jzimm"
52
53 set ASFLAGS "$old_ASFLAGS"
54}
55
This page took 0.076246 seconds and 4 git commands to generate.