Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / gcc.target / bfin / bfin.exp
blob854713e2f48723557a5da76587116f9aa9e49483
1 # Copyright (C) 2007 Free Software Foundation, Inc.
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.
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.
13 # You should have received a copy of the GNU General Public License
14 # along with GCC; see the file COPYING3. If not see
15 # <http://www.gnu.org/licenses/>.
17 # GCC testsuite that uses the `dg.exp' driver.
19 # Exit immediately if this isn't an BFIN target.
20 if ![istarget bfin-*-*] then {
21 return
24 # Load support procs.
25 load_lib gcc-dg.exp
27 # Like dg-options, but treats certain Blackfin-specific options specially:
29 # -mcpu=*
30 # Select the target cpu. Skip the test if the multilib flags force
31 # a different cpu.
32 proc dg-bfin-options {args} {
33 upvar dg-extra-tool-flags extra_tool_flags
34 upvar dg-do-what do_what
36 set multilib_cpu ""
37 set cpu ""
39 foreach flag [target_info multilib_flags] {
40 regexp "^-mcpu=(.*)" $flag dummy multilib_cpu
43 set flags [lindex $args 1]
45 foreach flag $flags {
46 regexp "^-mcpu=(.*)" $flag dummy cpu
49 if {$multilib_cpu == "" || $multilib_cpu == $cpu} {
50 set extra_tool_flags $flags
51 } else {
52 set do_what [list [lindex $do_what 0] "N" "P"]
56 # Initialize `dg'.
57 dg-init
59 # Main loop.
60 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.\[cCS\]]] "" ""
62 # All done.
63 dg-finish