Fix ICE in set_cell_span, at text-art/table.cc:148 with D front-end and -fanalyzer
[official-gcc.git] / gcc / testsuite / gdc.dg / analyzer / analyzer.exp
blob7b82b8e0cd188b26b7b0d4134dd77757e8e07e67
1 # Copyright (C) 2023 Free Software Foundation, Inc.
3 # This file is part of GCC.
5 # GCC is free software; you can redistribute it and/or modify it under
6 # the terms of the GNU General Public License as published by the Free
7 # Software Foundation; either version 3, or (at your option) any later
8 # version.
10 # GCC is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 # for more details.
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/>.
19 # GCC testsuite that uses the `dg.exp' driver.
21 # Load support procs.
22 load_lib gdc-dg.exp
24 # If the analyzer has not been enabled, bail.
25 if { ![check_effective_target_analyzer] } {
26 return
29 global DEFAULT_DFLAGS
30 if [info exists DEFAULT_DFLAGS] then {
31 set save_default_dflags $DEFAULT_DFLAGS
34 # If a testcase doesn't have special options, use these.
35 set DEFAULT_DFLAGS "-fanalyzer -Wanalyzer-too-complex -fanalyzer-call-summaries"
37 # Initialize `dg'.
38 dg-init
40 # Main loop.
41 gdc-dg-runtest [lsort \
42 [glob -nocomplain $srcdir/$subdir/*.d ] ] "" $DEFAULT_DFLAGS
44 # All done.
45 dg-finish
47 if [info exists save_default_dflags] {
48 set DEFAULT_DFLAGS $save_default_dflags
49 } else {
50 unset DEFAULT_DFLAGS