run copyright.sh for 2011.
[external/binutils.git] / sim / testsuite / sim / cris / asm / asm.exp
1 # Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
2 # Free Software Foundation, Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Miscellaneous CRIS simulator testcases in assembly code.
18
19 if [istarget cris*-*-*] {
20     global ASFLAGS_FOR_TARGET
21     # All machines we test and the corresponding assembler option.  Needs
22     # update if we build the simulator for crisv0 crisv3 and crisv8 too.
23
24     set combos {{"crisv10" "--march=v10 --no-mul-bug-abort"}
25                 {"crisv32" "--march=v32"}}
26
27     # We need to pass different assembler flags for each machine.
28     # Specifying it here rather than adding a specifier to each and every
29     # test-file is preferrable.
30
31     foreach combo $combos {
32         set mach [lindex $combo 0]
33         set ASFLAGS_FOR_TARGET "[lindex $combo 1]"
34
35         # The .ms suffix is for "miscellaneous .s".
36         foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.ms]] {
37             # If we're only testing specific files and this isn't one of them,
38             # skip it.
39             if ![runtest_file_p $runtests $src] {
40                 continue
41             }
42
43             run_sim_test $src $mach
44         }
45     }
46 }