2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / tic6x / tic6x.exp
blob1ed7c8358c5fc11c2f0a46707314fa9727667a07
1 # Copyright (C) 2010-2018 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 if ![istarget tic6x-*-*] then {
20 return
23 # Load support procs.
24 load_lib gcc-dg.exp
26 # Like dg-options, but treats certain C6X-specific options specially:
28 # -march=*
29 # Select the target architecture. Skip the test if the multilib
30 # flags force a different arch.
31 proc dg-c6x-options {args} {
32 upvar dg-extra-tool-flags extra_tool_flags
33 upvar dg-do-what do_what
35 set multilib_arch ""
36 set arch ""
38 foreach flag [target_info multilib_flags] {
39 regexp "^-march=(.*)" $flag dummy multilib_arch
42 set flags [lindex $args 1]
44 foreach flag $flags {
45 regexp "^-march=(.*)" $flag dummy arch
48 if {$multilib_arch == "" || $multilib_cpu == $arch} {
49 set extra_tool_flags $flags
50 } else {
51 set do_what [list [lindex $do_what 0] "N" "P"]
55 # Initialize `dg'.
56 dg-init
58 # Main loop.
59 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.\[cCS\]]] "" ""
61 # All done.
62 dg-finish