2002-08-15 Andrew Cagney <ac131313@redhat.com>
[deliverable/binutils-gdb.git] / gas / testsuite / gas / sh / basic.exp
CommitLineData
31c372aa 1# Copyright (C) 1995, 1996, 1997, 2002 Free Software Foundation, Inc.
252b5132
RH
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 2 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program; if not, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17# Please email any bugs, comments, and/or additions to this file to:
18# DejaGnu@cygnus.com
19
20# Written by Cygnus Support.
21
dc5e727b
NC
22if [istarget "sh*-*-linux-gnu"] {
23 global ASFLAGS
24 set ASFLAGS "$ASFLAGS -big"
25}
26
252b5132
RH
27proc do_fp {} {
28 set testname "fp.s: floating point tests (sh3e)"
29 set x 0
30
31 gas_start "fp.s" "-al"
32
33 # Check the assembled instruction against a table built by the HP assembler
34 # Any differences should be checked by hand -- with the number of problems
35 # I've seen in the HP assembler I don't completely trust it.
36 #
37 # Instead of having a variable for each match string just increment the
38 # total number of matches seen. That's simpler when testing large numbers
39 # of instructions (as these tests to).
40 while 1 {
41 expect {
42 -re "^ +\[0-9\]+ 0000 F008\[^\n\]*\n" { set x [expr $x+1] }
43 -re "^ +\[0-9\]+ 0002 F00A\[^\n\]*\n" { set x [expr $x+1] }
44 -re "^ +\[0-9\]+ 0004 F009\[^\n\]*\n" { set x [expr $x+1] }
45 -re "^ +\[0-9\]+ 0006 F00B\[^\n\]*\n" { set x [expr $x+1] }
46 -re "^ +\[0-9\]+ 0008 F006\[^\n\]*\n" { set x [expr $x+1] }
47 -re "^ +\[0-9\]+ 000a F007\[^\n\]*\n" { set x [expr $x+1] }
48 -re "^ +\[0-9\]+ 000c F10C\[^\n\]*\n" { set x [expr $x+1] }
49 -re "^ +\[0-9\]+ 000e F08D\[^\n\]*\n" { set x [expr $x+1] }
50 -re "^ +\[0-9\]+ 0010 F09D\[^\n\]*\n" { set x [expr $x+1] }
51 -re "^ +\[0-9\]+ 0012 F100\[^\n\]*\n" { set x [expr $x+1] }
52 -re "^ +\[0-9\]+ 0014 F101\[^\n\]*\n" { set x [expr $x+1] }
53 -re "^ +\[0-9\]+ 0016 F102\[^\n\]*\n" { set x [expr $x+1] }
54 -re "^ +\[0-9\]+ 0018 F103\[^\n\]*\n" { set x [expr $x+1] }
55 -re "^ +\[0-9\]+ 001a F10E\[^\n\]*\n" { set x [expr $x+1] }
56 -re "^ +\[0-9\]+ 001c F104\[^\n\]*\n" { set x [expr $x+1] }
57 -re "^ +\[0-9\]+ 001e F105\[^\n\]*\n" { set x [expr $x+1] }
58 -re "^ +\[0-9\]+ 0020 F04D\[^\n\]*\n" { set x [expr $x+1] }
59 -re "^ +\[0-9\]+ 0022 F05D\[^\n\]*\n" { set x [expr $x+1] }
60 -re "^ +\[0-9\]+ 0024 F06D\[^\n\]*\n" { set x [expr $x+1] }
61 -re "^ +\[0-9\]+ 0026 F02D\[^\n\]*\n" { set x [expr $x+1] }
62 -re "^ +\[0-9\]+ 0028 F03D\[^\n\]*\n" { set x [expr $x+1] }
63 -re "^ +\[0-9\]+ 002a F00D\[^\n\]*\n" { set x [expr $x+1] }
64 -re "^ +\[0-9\]+ 002c F01D\[^\n\]*\n" { set x [expr $x+1] }
65 -re "^ +\[0-9\]+ 002e 435A\[^\n\]*\n" { set x [expr $x+1] }
66 -re "^ +\[0-9\]+ 0030 4356\[^\n\]*\n" { set x [expr $x+1] }
67 -re "^ +\[0-9\]+ 0032 436A\[^\n\]*\n" { set x [expr $x+1] }
68 -re "^ +\[0-9\]+ 0034 4366\[^\n\]*\n" { set x [expr $x+1] }
69 -re "^ +\[0-9\]+ 0036 035A\[^\n\]*\n" { set x [expr $x+1] }
70 -re "^ +\[0-9\]+ 0038 4352\[^\n\]*\n" { set x [expr $x+1] }
71 -re "^ +\[0-9\]+ 003a 036A\[^\n\]*\n" { set x [expr $x+1] }
72 -re "^ +\[0-9\]+ 003c 4362\[^\n\]*\n" { set x [expr $x+1] }
73 -re "\[^\n\]*\n" { }
74 timeout { perror "timeout\n"; break }
75 eof { break }
76 }
77 }
78
79 # This was intended to do any cleanup necessary. It kinda looks like it
80 # isn't needed, but just in case, please keep it in for now.
81 gas_finish
82
83 # Did we find what we were looking for? If not, flunk it.
84 if [expr $x==31] then { pass $testname } else { fail $testname }
85}
86
87
88if [istarget sh*-*-*] then {
89 # Test the basic instruction parser.
90 do_fp
77b63882
JR
91
92 # coff is missing information about the machine type, so everything is
93 # dumped as sh4.
94 if {[istarget sh*-*coff] || [istarget sh*-hms]} then {
95 run_dump_test "pcrel-coff"
96 } else {
97 # Test DSP instructions
98 run_dump_test "dsp"
99
100 run_dump_test "pcrel"
101 }
31c372aa 102
adf14613
DJ
103 if {[istarget sh*-*elf] || [istarget sh*-linux*]} then {
104 run_dump_test "pic"
105 }
252b5132 106}
This page took 0.145775 seconds and 4 git commands to generate.