[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / dg.exp
blob7a6096ca52214c4188f4eee8c5cde5007d216b0c
1 # Copyright (C) 2000-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 # G++ testsuite that uses the `dg.exp' driver.
19 # Load support procs.
20 load_lib g++-dg.exp
21 load_lib mpx-dg.exp
23 # If a testcase doesn't have special options, use these.
24 global DEFAULT_CXXFLAGS
25 if ![info exists DEFAULT_CXXFLAGS] then {
26 set DEFAULT_CXXFLAGS " -pedantic-errors -Wno-long-long"
29 # Initialize `dg'.
30 dg-init
32 # Recursively find files in $dir and subdirs, do not walk into subdirs
33 # that contain their own .exp file.
34 proc find-cxx-tests { dir suffix } {
35 set tests [lsort [glob -nocomplain -directory $dir "*.$suffix" ]]
36 foreach subdir [lsort [glob -nocomplain -type d -directory $dir *]] {
37 if { [glob -nocomplain -directory $subdir *.exp] eq "" } {
38 eval lappend tests [find-cxx-tests $subdir $suffix]
41 return $tests
44 set tests [find-cxx-tests $srcdir/$subdir {C}]
46 # Main loop.
47 g++-dg-runtest $tests "" $DEFAULT_CXXFLAGS
49 # C/C++ common tests.
50 g++-dg-runtest [lsort [glob -nocomplain $srcdir/c-c++-common/*.\[cSi\]]] \
51 "" ""
53 g++-dg-runtest [lsort [glob -nocomplain $srcdir/c-c++-common/cpp/*.\[cS\]]] \
54 "" ""
57 # All done.
58 dg-finish