]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/analyzer/torture/analyzer-torture.exp
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / analyzer / torture / analyzer-torture.exp
CommitLineData
a945c346 1# Copyright (C) 2020-2024 Free Software Foundation, Inc.
d16db16e
DM
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 GCC; see the file COPYING3. If not see
15# <http://www.gnu.org/licenses/>.
16
17# This harness is for tests that should be run at all optimisation levels.
18
19load_lib gcc-dg.exp
20
21# If the analyzer has not been enabled, bail.
22if { ![check_effective_target_analyzer] } {
23 return
24}
25
26dg-init
27
28global DEFAULT_CFLAGS
29if [info exists DEFAULT_CFLAGS] then {
30 set save_default_cflags $DEFAULT_CFLAGS
31}
32
33# If a testcase doesn't have special options, use these.
34set DEFAULT_CFLAGS "-fanalyzer -fdiagnostics-path-format=separate-events -Wanalyzer-too-complex -fanalyzer-call-summaries"
35
36gcc-dg-runtest [lsort [glob $srcdir/$subdir/*.c]] "" $DEFAULT_CFLAGS
37
38dg-finish
39
40if [info exists save_default_cflags] {
41 set DEFAULT_CFLAGS $save_default_cflags
42} else {
43 unset DEFAULT_CFLAGS
44}