]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.target/xstormy16/xstormy16.exp
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / xstormy16 / xstormy16.exp
CommitLineData
8d9254fc 1# Copyright (C) 2004-2020 Free Software Foundation, Inc.
ad41bd84
JM
2#
3# This file is part of GCC.
4#
5# GCC is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 3, or (at your option)
8# any later version.
9#
10# GCC is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with GCC; see the file COPYING3. If not see
17# <http://www.gnu.org/licenses/>.
18
1a06672a
NC
19# Tests for the xstormy16
20
21if {![istarget xstormy16-*-*]} {
22 return 0
23}
24
25load_lib gcc-dg.exp
26
1a06672a
NC
27# Initialize `dg'.
28dg-init
29
de40e4dd
NC
30# Assemble the below100.S file which contains
31# support code for the rest of the tests.
32set old-dg-do-what-default "${dg-do-what-default}"
33set dg-do-what-default assemble
34dg-test -keep-output "$srcdir/$subdir/below100.S" "" ""
35set dg-do-what-default run
36
37
1a06672a 38# Main loop.
de40e4dd 39foreach testcase [lsort [find $srcdir/$subdir *.c]] {
11289ef9 40 global test_counts
de40e4dd
NC
41
42 set base "[file rootname [file tail $testcase]]"
43
44 if ![runtest_file_p $runtests $testcase] {
45 continue
46 }
47
48 set fails_before $test_counts(FAIL,count)
49 dg-test $testcase "--save-temps -fno-inline-functions -L$srcdir/$subdir" ""
50 set fails_after $test_counts(FAIL,count)
51
52 if { $fails_before == $fails_after } {
53 catch "exec rm -f $base.i $base.s $base.o"
54 }
55}
56
57set dg-do-what-default "${old-dg-do-what-default}"
1a06672a
NC
58
59# All done.
60dg-finish