]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/testsuite/cris/asm/asm.exp
sim: testsuite: push $arch out to targets
[thirdparty/binutils-gdb.git] / sim / testsuite / cris / asm / asm.exp
1 # Copyright (C) 2005-2021 Free Software Foundation, Inc.
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 3 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, see <http://www.gnu.org/licenses/>.
15
16 # Miscellaneous CRIS simulator testcases in assembly code.
17
18 if [istarget cris*-*-*] {
19 # Used to locate the `run` program.
20 global arch
21 set arch "cris"
22
23 global ASFLAGS_FOR_TARGET
24 # All machines we test and the corresponding assembler option. Needs
25 # update if we build the simulator for crisv0 crisv3 and crisv8 too.
26
27 set combos {{"crisv10" "--march=v10 --no-mul-bug-abort"}
28 {"crisv32" "--march=v32"}}
29
30 # We need to pass different assembler flags for each machine.
31 # Specifying it here rather than adding a specifier to each and every
32 # test-file is preferrable.
33
34 foreach combo $combos {
35 set mach [lindex $combo 0]
36 set ASFLAGS_FOR_TARGET "[lindex $combo 1]"
37
38 # The .ms suffix is for "miscellaneous .s".
39 foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.ms]] {
40 # If we're only testing specific files and this isn't one of them,
41 # skip it.
42 if ![runtest_file_p $runtests $src] {
43 continue
44 }
45
46 run_sim_test $src $mach
47 }
48 }
49 }