OSDN Git Service

* g++.dg/dg.exp: Ignore tests in new directories bprob and gcov.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / bprob / bprob.exp
1 #   Copyright (C) 2001, 2002 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
16 #
17 # Test the functionality of programs compiled with profile-directed block
18 # ordering using -fprofile-arcs followed by -fbranch-probabilities.
19
20 # The procedures in profopt.exp need these parameters.
21 set tool g++
22 set profile_option -fprofile-arcs
23 set feedback_option -fbranch-probabilities
24 set prof_ext da
25
26 if $tracelevel then {
27     strace $tracelevel
28 }
29
30 # Override the list defined in profopt.exp.
31 set PROFOPT_OPTIONS [list \
32         { -g } \
33         { -O0 } \
34         { -O1 } \
35         { -O2 } \
36         { -O3 } \
37         { -O3 -g } \
38         { -Os } ]
39
40 if $tracelevel then {
41     strace $tracelevel
42 }
43
44 # Load support procs.
45 load_lib profopt.exp
46
47 # Clean up existing .da files.
48 profopt-cleanup da
49
50 # Main loop.
51 foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.C]] {
52     # If we're only testing specific files and this isn't one of them, skip it.
53     if ![runtest_file_p $runtests $src] then {
54         continue
55     }
56
57     profopt-execute $src
58 }