OSDN Git Service

2003-06-18 Benjamin Kosnik <bkoz@redhat.com>
[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 =  cygnus dejagnu
25
26 mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
27
28 DEJATOOL = libstdc++-v3
29
30 EXPECT = `if [ -f @glibcpp_builddir@/../../expect/expect ] ; then \
31             echo @glibcpp_builddir@/../../expect/expect ; \
32           else echo expect ; fi`
33
34 RUNTEST = `if [ -f @glibcpp_srcdir@/../dejagnu/runtest ] ; then \
35                echo @glibcpp_srcdir@/../dejagnu/runtest ; \
36             else echo runtest; fi`
37
38 AM_RUNTESTFLAGS =
39 RUNTESTFLAGS =
40
41 ## CXX is actually a "C" compiler. These are real C++ programs.
42 glibcpp_srcdir=@glibcpp_srcdir@
43 glibcpp_builddir=@glibcpp_builddir@
44 testsuite_flags_script=${glibcpp_builddir}/scripts/testsuite_flags
45 CXX=`${testsuite_flags_script} --build-cxx`
46
47 CXXLINK = \
48         LD_RUN_PATH=$${LD_RUN_PATH:+$$LD_RUN_PATH:}${glibcpp_builddir}/src/.libs\
49         $(LIBTOOL) --tag=CXX --mode=link $(CXX) \
50         $(AM_CXXFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@
51
52 GLIBCPP_INCLUDES = @GLIBCPP_INCLUDES@
53 LIBSUPCXX_INCLUDES = @LIBSUPCXX_INCLUDES@
54 TOPLEVEL_INCLUDES = @TOPLEVEL_INCLUDES@
55 INCLUDES = \
56         -nostdinc++ \
57         @GLIBCPP_INCLUDES@ @LIBSUPCXX_INCLUDES@ @TOPLEVEL_INCLUDES@ 
58
59 ## Build support library.
60 noinst_LIBRARIES = libv3test.a
61 libv3test_a_SOURCES = testsuite_hooks.cc testsuite_allocator.cc
62
63 ## Build support utilities.
64 if GLIBCPP_TEST_ABI
65 noinst_PROGRAMS = abi_check
66 else
67 noinst_PROGRAMS = 
68 endif
69 abi_check_SOURCES = abi_check.cc
70
71 all-local: stamp_wchar
72
73 # Enable wchar_t tests if capable.
74 if GLIBCPP_TEST_WCHAR_T
75 stamp_wchar:
76         touch testsuite_wchar_t
77 else
78 stamp_wchar:
79 endif
80
81 # Override this so local rules are possible.
82 check-am: 
83         $(MAKE) $(AM_MAKEFLAGS) check-DEJAGNU; \
84         $(MAKE) $(AM_MAKEFLAGS) check-local 
85
86 check-local: check-abi
87
88 baseline_dir = @baseline_dir@
89 baseline_file = ${baseline_dir}/baseline_symbols.txt
90 extract_symvers = @glibcpp_srcdir@/config/abi/extract_symvers
91
92 current_symbols.txt: ${extract_symvers} ../src/.libs/libstdc++.so
93           -@(${extract_symvers} ../src/.libs/libstdc++.so current_symbols.txt)
94
95 baseline_symbols:
96         -@(output=${baseline_file}; \
97           if test ! -f $${output}; then \
98             echo "Baseline file doesn't exist."; \
99             echo "Try 'make new-abi-baseline' to create it."; \
100             exit 1; \
101           fi; \
102         touch baseline_symbols)
103
104 new-abi-baseline: 
105         -@$(mkinstalldirs) ${baseline_dir}
106         -@(output=${baseline_file}; \
107           if test -f $${output}; then \
108             output=$${output}.new; \
109             t=`echo $${output} | sed 's=.*config/abi/=='`; \
110             echo "Baseline file already exists, writing to $${t} instead."; \
111           fi; \
112           ${extract_symvers} ../src/.libs/libstdc++.so $${output})
113
114 if GLIBCPP_TEST_ABI
115 # Use 'new-abi-baseline' to create an initial symbol file.  Then run
116 # 'check-abi' to test for changes against that file.
117 check-abi: abi_check baseline_symbols current_symbols.txt
118         -@(./abi_check --check ./current_symbols.txt ${baseline_file})
119
120 check-abi-verbose: abi_check baseline_symbols current_symbols.txt 
121         -@(./abi_check --check-verbose ./current_symbols.txt ${baseline_file})
122 else
123 check-abi:
124 check-abi-verbose:
125 endif
126
127
128 # These two special 'check-script' rules use the bash script
129 # 'check_survey' to do testing. This script is not as portable as the
130 # dejagnu test harness, and is thus off by default. It does produce
131 # interesting output however, including various performance analysis
132 # items like compile time, execution time, and binary size.
133 survey_script = ${glibcpp_builddir}/scripts/check_survey
134 check-script: ${survey_script}
135         -@(chmod + ${survey_script}; \
136           ${survey_script} 0)
137
138 check-script-install: ${survey_script}
139         -@(chmod + ${survey_script}; \
140           ${survey_script} 0)
141
142
143 # Runs the testsuite/performance tests.  
144 # Some of these tests create large (~75MB) files, allocate huge
145 # ammounts of memory, or otherwise tie up machine resources. Thus,
146 # running this is off by default.
147 performance_script=${glibcpp_srcdir}/scripts/check_performance
148 check-performance: ${performance_script}
149         -@(chmod + ${performance_script}; \
150           ${performance_script} ${glibcpp_srcdir} ${glibcpp_builddir})
151
152
153 # By adding these files here, automake will remove them for 'make clean'
154 CLEANFILES = *.txt *.tst *.exe core* filebuf_* tmp* ostream_* *.log *.sum \
155              testsuite_* site.exp abi_check baseline_symbols *.performance