aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/libstdc++-dg/normal.exp
blob: 67f4920eb1089432212843f4a719752efd455245 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Primary test file for libstdc++.

# Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  

# libstdc++-v3 testsuite that uses the 'dg.exp' driver.

# Initialization.
dg-init

# Build the support objects.
libstdc++_build_support

# Find directories that might have tests.
set subdirs [glob "$srcdir/\[0-9\]\[0-9\]*"]
foreach d [glob "$srcdir/\[a-z\]*"] {
    if {[file isdirectory $d]} { 
	lappend subdirs $d
    }
}

# Find all the tests.
set tests [list]
foreach s $subdirs {
    set subdir_tests [find $s *.cc]
    # Filter out tests that should not be run.
    foreach t $subdir_tests {
	# The DejaGNU "find" procedure sometimes returns a list 
	# containing an empty string, when it should realy return
	# an empty list.
	if { $t == "" } {
	    continue
	}
	# Filter out:
	# 1. interactive tests.
	# 2. performance tests.
	# 3. wchar_t tests, if not supported.
	# 4. thread tests, if not supported. 
	if { [string first _xin $t] == -1
	     && [string first performance $t] == -1
	     && (${libstdc++_wchar_t} || [string first wchar_t $t] == -1) 
             && (${libstdc++_threads} || [string first thread $t] == -1) } {
	    lappend tests $t
	}
    }
}
set tests [lsort $tests]

# Main loop.
global DEFAULT_CXXFLAGS
dg-runtest $tests "" $DEFAULT_CXXFLAGS

# All done.
dg-finish