OSDN Git Service

4248a14fe0c1397f7d56ae3c68848146f43ff18a
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / Makefile.am
1 ## Makefile for the testsuite subdirectory of the GNU C++ Standard library.
2 ##
3 ## Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
4 ##
5 ## This file is part of the libstdc++ version 3 distribution.
6 ## Process this file with automake to produce Makefile.in.
7
8 ## This file is part of the GNU ISO C++ Library.  This library is free
9 ## software; you can redistribute it and/or modify it under the
10 ## terms of the GNU General Public License as published by the
11 ## Free Software Foundation; either version 2, or (at your option)
12 ## any later version.
13
14 ## This library is distributed in the hope that it will be useful,
15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ## GNU General Public License for more details.
18
19 ## You should have received a copy of the GNU General Public License along
20 ## with this library; see the file COPYING.  If not, write to the Free
21 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
22 ## USA.
23
24 AUTOMAKE_OPTIONS = dejagnu
25
26 include $(top_srcdir)/fragment.am
27
28 AM_MAKEFLAGS = -j1
29 AM_RUNTESTFLAGS =
30
31 ## CXX is actually a "C" compiler. These are real C++ programs.
32 testsuite_flags_script=${glibcxx_builddir}/scripts/testsuite_flags
33 CXX=`${testsuite_flags_script} --build-cxx`
34
35 CXXLINK = \
36         LD_RUN_PATH=$${LD_RUN_PATH:+$$LD_RUN_PATH:}${glibcxx_builddir}/src/.libs\
37         $(LIBTOOL) --tag=CXX --mode=link $(CXX) \
38         $(AM_CXXFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@
39
40 # Generated lists of files to run.  All of these names are valid make
41 # targets, if you wish to generate a list manually.
42 lists_of_files = \
43    testsuite_files \
44    testsuite_files_interactive \
45    testsuite_files_performance
46
47 ## Build support library.
48 noinst_LIBRARIES = libv3test.a
49 libv3test_a_SOURCES = testsuite_hooks.cc testsuite_allocator.cc
50
51 ## Build support utilities.
52 if GLIBCXX_TEST_ABI
53 noinst_PROGRAMS = abi_check
54 else
55 noinst_PROGRAMS = 
56 endif
57 abi_check_SOURCES = abi_check.cc
58
59 all-local: stamp_wchar testsuite_files
60
61 # Enable wchar_t tests if capable.
62 if GLIBCXX_TEST_WCHAR_T
63 stamp_wchar:
64         touch testsuite_wchar_t
65 else
66 stamp_wchar:
67 endif
68
69 # This is automatically run after the generated check-DEJAGNU rule.
70 check-local: check-abi
71
72 baseline_dir = @baseline_dir@
73 baseline_file = ${baseline_dir}/baseline_symbols.txt
74 extract_symvers = @glibcxx_srcdir@/scripts/extract_symvers
75
76 current_symbols.txt: ${extract_symvers} ../src/.libs/libstdc++.so
77           -@(${extract_symvers} ../src/.libs/libstdc++.so current_symbols.txt)
78
79 baseline_symbols:
80         -@(output=${baseline_file}; \
81           if test ! -f $${output}; then \
82             echo "Baseline file doesn't exist."; \
83             echo "Try 'make new-abi-baseline' to create it."; \
84             exit 1; \
85           fi; true)
86
87 new-abi-baseline: 
88         -@$(mkinstalldirs) ${baseline_dir}
89         -@(output=${baseline_file}; \
90           if test -f $${output}; then \
91             output=$${output}.new; \
92             t=`echo $${output} | sed 's=.*config/abi/=='`; \
93             echo "Baseline file already exists, writing to $${t} instead."; \
94           fi; \
95           ${extract_symvers} ../src/.libs/libstdc++.so $${output})
96
97 if GLIBCXX_TEST_ABI
98 # Use 'new-abi-baseline' to create an initial symbol file.  Then run
99 # 'check-abi' to test for changes against that file.
100 check-abi: abi_check baseline_symbols current_symbols.txt
101         -@(./abi_check --check ./current_symbols.txt ${baseline_file} \
102         2>&1 | tee libstdc++-abi.sum)
103
104 check-abi-verbose: abi_check baseline_symbols current_symbols.txt 
105         -@(./abi_check --check-verbose ./current_symbols.txt ${baseline_file} \
106         2>&1 | tee libstdc++-abi.sum)
107
108 else
109 check-abi:
110 check-abi-verbose:
111 endif
112
113
114 # These two special 'check-script' rules use the bash script
115 # 'check_survey' to do testing. This script is not as portable as the
116 # dejagnu test harness, and is thus off by default. It does produce
117 # interesting output however, including various performance analysis
118 # items like compile time, execution time, and binary size.
119 survey_script = ${glibcxx_builddir}/scripts/check_survey
120 check-script: ${survey_script}
121         -@(chmod + ${survey_script}; \
122           ${survey_script} 0)
123
124 check-script-install: ${survey_script}
125         -@(chmod + ${survey_script}; \
126           ${survey_script} 0)
127
128
129 # Runs the testsuite/performance tests.  
130 # Some of these tests create large (~75MB) files, allocate huge
131 # ammounts of memory, or otherwise tie up machine resources. Thus,
132 # running this is off by default.
133 performance_script=${glibcxx_srcdir}/scripts/check_performance
134 check-performance: testsuite_files_performance ${performance_script}
135         -@(chmod + ${performance_script}; \
136           ${performance_script} ${glibcxx_srcdir} ${glibcxx_builddir})
137
138
139 # This rule generates all of the testsuite_files* lists at once.
140 ${lists_of_files}:
141         ${glibcxx_srcdir}/scripts/create_testsuite_files \
142           ${glibcxx_srcdir}/testsuite `${PWD_COMMAND}`
143
144
145 .PHONY: baseline_symbols new-abi-baseline check-abi check-abi-verbose \
146 check-script check-script-install check-performance
147
148 # By adding these files here, automake will remove them for 'make clean'
149 CLEANFILES = *.txt *.tst *.exe core* filebuf_* tmp* ostream_* *.log *.sum \
150              testsuite_* site.exp abi_check baseline_symbols