]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.dg/extern-c++/extern-c++.exp
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gdc.dg / extern-c++ / extern-c++.exp
1 # Copyright (C) 2021-2024 Free Software Foundation, Inc.
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 # Load support procs.
18 load_lib gdc-dg.exp
19
20 # We are mixing D and C++ code, need to pull in libstdc++
21 global GDC_INCLUDE_CXX_FLAGS
22 set GDC_INCLUDE_CXX_FLAGS 1
23
24 # Initialize `dg'.
25 dg-init
26
27 # Main loop.
28 if [check_no_compiler_messages extern_c++_tests assembly {
29 // C++
30 int main() { return 0; }
31 }] {
32 gdc-dg-runtest [lsort \
33 [glob -nocomplain $srcdir/$subdir/*.d ] ] "" ""
34 }
35
36 set GDC_INCLUDE_CXX_FLAGS 0
37
38 # All done.
39 dg-finish