]> gcc.gnu.org Git - gcc.git/blame - gcc/testsuite/gcc.c-torture/unsorted/unsorted.exp
libgomp.exp: Load torture-options.exp from gcc lib.
[gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / unsorted.exp
CommitLineData
921e5a0e
JL
1#
2# Expect driver script for GCC Regression Tests
cd976c16 3# Copyright (C) 1993, 1997, 2007 Free Software Foundation
921e5a0e
JL
4#
5# This file is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
cd976c16 7# the Free Software Foundation; either version 3 of the License, or
921e5a0e
JL
8# (at your option) any later version.
9#
10# This program 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
cd976c16
NC
16# along with GCC; see the file COPYING3. If not see
17# <http://www.gnu.org/licenses/>.
921e5a0e
JL
18#
19# Written by Jeffrey Wheat (cassidy@cygnus.com)
20#
21
22#
23# These tests come from Torbjorn Granlund's (tege@cygnus.com)
24# C torture test suite, and other contributors.
25#
26
27if $tracelevel then {
28 strace $tracelevel
29}
30
31# load support procs
32load_lib c-torture.exp
91a5b394
JJ
33load_lib torture-options.exp
34
35torture-init
36set-torture-options $C_TORTURE_OPTIONS
921e5a0e
JL
37
38#
39# This loop will run c-torture on any *.c file found in this directory.
40# If a *.c has a corresponding *.exp file, then the test is skipped as
41# as the *.exp will drive the test itself. It is done this way so that
cc712abf 42# generic tests do not need a separate .exp for it. Only the tests that
921e5a0e
JL
43# require unique options need their own .exp file.
44#
45
b9675864 46foreach testcase [lsort [glob -nocomplain $srcdir/$subdir/*.c]] {
921e5a0e
JL
47 if [file exists [file rootname $testcase].exp] then {
48 verbose "INFO:\"[file rootname $testcase].exp\" exists, skipping test" 3
49 continue
50 }
51
52 # If we're only testing specific files and this isn't one of them, skip it.
53 if ![runtest_file_p $runtests $testcase] then {
54 continue
55 }
56
57 c-torture $testcase
58}
91a5b394
JJ
59
60torture-finish
This page took 3.823826 seconds and 5 git commands to generate.