]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/objc.dg/pch/pch.exp
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / objc.dg / pch / pch.exp
CommitLineData
8d9254fc 1# Copyright (C) 1997-2020 Free Software Foundation, Inc.
d2f9f9a6
AP
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
cd976c16 5# the Free Software Foundation; either version 3 of the License, or
d2f9f9a6
AP
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
cd976c16
NC
14# along with GCC; see the file COPYING3. If not see
15# <http://www.gnu.org/licenses/>.
d2f9f9a6
AP
16
17# GCC testsuite for precompiled header interaction,
18# that uses the `dg.exp' driver.
19
20# Load support procs.
21load_lib objc-dg.exp
22load_lib dg-pch.exp
91a5b394 23load_lib torture-options.exp
d2f9f9a6
AP
24
25# Initialize `dg'.
26dg-init
91a5b394 27torture-init
f6007d99 28pch-init
504d14c9 29
91a5b394
JJ
30set-torture-options $DG_TORTURE_OPTIONS
31
d2f9f9a6
AP
32set old_dg_do_what_default "${dg-do-what-default}"
33
504d14c9
IS
34global torture_without_loops
35set mytorture [concat [list {-O0 -g}] $torture_without_loops]
36
d2f9f9a6
AP
37# Main loop.
38foreach test [lsort [glob -nocomplain $srcdir/$subdir/*.m]] {
504d14c9
IS
39
40 # We don't try to use the loop-optimizing options, since they are highly
41 # unlikely to make any difference to PCH. However, we do want to
42 # add -O0 -g, since users who want PCH usually want debugging and quick
43 # compiles.
44 dg-flags-pch $subdir $test "-fgnu-runtime" $mytorture ".h"
45}
46
47if [istarget "*-*-darwin*" ] {
48 foreach test [lsort [glob -nocomplain $srcdir/$subdir/*.m]] {
d2f9f9a6
AP
49 global torture_without_loops
50
51 # We don't try to use the loop-optimizing options, since they are highly
52 # unlikely to make any difference to PCH. However, we do want to
53 # add -O0 -g, since users who want PCH usually want debugging and quick
54 # compiles.
504d14c9
IS
55 dg-flags-pch $subdir $test "-fnext-runtime" $mytorture ".h"
56 }
d2f9f9a6
AP
57}
58
59set dg-do-what-default "$old_dg_do_what_default"
60
61# All done.
f6007d99 62pch-finish
91a5b394 63torture-finish
d2f9f9a6 64dg-finish