OSDN Git Service

c2b309e194cc4910f6feafe7d6ee8e0259a12469
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pch / pch.exp
1 #   Copyright (C) 1997, 2002, 2003 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 2 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 this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  
16
17 # GCC testsuite for precompiled header interaction,
18 # that uses the `dg.exp' driver.
19
20 # Load support procs.
21 load_lib gcc-dg.exp
22 load_lib dg-pch.exp
23
24 # Initialize `dg'.
25 dg-init
26
27 set old_dg_do_what_default "${dg-do-what-default}"
28
29 # Main loop.
30 foreach test [lsort [glob -nocomplain $srcdir/$subdir/*.c]] {
31     global torture_without_loops
32
33     # We don't try to use the loop-optimizing options, since they are highly
34     # unlikely to make any difference to PCH.  However, we do want to
35     # add -O0 -g, since users who want PCH usually want debugging and quick
36     # compiles.
37     dg-pch $subdir $test [concat [list {-O0 -g}] $torture_without_loops] ".h"
38 }
39
40 set test "largefile.c"
41 set testh "largefile.hs"
42 set f [open $test w]
43 puts $f "/* { dg-xfail-if \"PR 14940\" { \"i?86-*-solaris2.10\" } { \"*\" } { \"\" } } */"
44 set v 0
45 for { set v 0 } { $v < 10000 } { incr v } {
46     puts $f "#define MACRO_${v} \"1234567890\" \"$v\""
47 }
48 puts $f "#include \"largefile.h\""
49 close $f
50 set f [open $testh w]
51 close $f
52 dg-pch $subdir $test [concat [list {-O0 -g}] $torture_without_loops] ".h"    
53 file delete $test
54 file delete $testh
55
56 set dg-do-what-default "$old_dg_do_what_default"
57
58 # All done.
59 dg-finish