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.
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"
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]
44 set tests [find-cxx-tests $srcdir/$subdir {C}]
47 g++-dg-runtest $tests "" $DEFAULT_CXXFLAGS
50 g++-dg-runtest [lsort [glob -nocomplain $srcdir/c-c++-common/*.\[cSi\]]] \
53 g++-dg-runtest [lsort [glob -nocomplain $srcdir/c-c++-common/cpp/*.\[cS\]]] \