2003-06-14 Nick Clifton <nickc@redhat.com>
[official-gcc.git] / libstdc++-v3 / mkcheck.in
blob377321cac43a293877e646da9b4c63d3183706cf
1 #!/usr/bin/env bash
3 # Script to do automated testing and data collection for various test
4 # files, so that we don't have to do this by hand on every test file.
5 # It attempts to collect some diagnostic info about size and speed that
6 # should be useful in the future as the library gets tuned for size
7 # and speed. In addition, it tests static and shared linkage, iff each
8 # has been enabled.
10 # Invocation
11 # mkcheck [01]
13 # 1: variables
15 # WHICH determines if you are
16 # (0) testing the build binary and headers, or
17 # (1) testing the installed binary and headers, or
18 WHICH=$1
19 if [ "$WHICH"x = 0x ]; then
20 echo "running mkcheck"
21 echo "$0: testing the build directory"
22 elif [ "$WHICH"x = 1x ]; then
23 echo "running mkcheck"
24 echo "$0: testing the install directory"
25 else
26 echo 'Usage: mkcheck 0 /* test the build directory */'
27 echo ' mkcheck 1 /* test the install directory */'
28 exit 1;
31 # Now that we've successfully translated the numerical option into
32 # a symbolic one, we can safely ignore it.
33 shift
35 # This has been true all along. Found out about it the hard way...
36 case $BASH_VERSION in
37 1*) echo 'You need bash 2.x to run mkcheck. Exiting.'; exit 1 ;;
38 *) ;; # ??
39 esac
41 BUILD_DIR=@glibcpp_builddir@
42 SRC_DIR=@glibcpp_srcdir@
43 PREFIX_DIR=@glibcpp_prefixdir@
44 if [ "$WHICH"x = 0x ]; then
45 CXX=`$BUILD_DIR/testsuite_flags --build-cxx`
46 INCLUDES=`$BUILD_DIR/testsuite_flags --build-includes`
47 else
48 CXX=`$BUILD_DIR/testsuite_flags --install-cxx`
49 INCLUDES=`$BUILD_DIR/testsuite_flags --install-includes`
51 CXXFLAGS=`$BUILD_DIR/testsuite_flags --cxxflags`
52 LIBTOOL="$BUILD_DIR/libtool"
53 LTEXE="$LIBTOOL --mode=execute"
54 #LTCXX="$LIBTOOL --tag=CXX --mode=link $CXX $CXXFLAGS $INCLUDES"
55 LTCXX="$CXX $CXXFLAGS $INCLUDES"
57 # specific libtool flag(s) to use shared libraries, if any
58 SH_FLAG="-Wl,--rpath -Wl,$BUILD_DIR/../../gcc -Wl,--rpath -Wl,$BUILD_DIR/src/.libs"
60 # specific libtool flag(s) to use static libraries, if any
61 ST_FLAG="-static"
62 #ST_FLAG="-all-static"
64 # Set up the testing directory, which should be in a directory called
65 # "testsuite" in the root level of the build directory.
66 TEST_DIR="$BUILD_DIR/testsuite"
67 # help libtool keep quiet
68 if [ ! -d ${TEST_DIR}/.libs ]; then
69 mkdir $TEST_DIR/.libs
72 # the name of the file that will collect and hold all this useful data:
73 RESULTS_FILE="$TEST_DIR/$(date +%Y%m%d)-mkcheck.txt"
75 # the name of the log file that will append compiler diagnostics:
76 LOG_FILE="$TEST_DIR/$(date +%Y%m%d)-mkchecklog.txt"
78 # the names of the specific test files to be run
79 TESTS_FILE="$TEST_DIR/$(date +%Y%m%d)-mkcheckfiles.txt"
83 # 2: clean, make files, append general test info
86 # Remove old executables.
87 rm -rf "$TEST_DIR"/*exe
88 rm -rf "$TEST_DIR"/compile.out
90 # Remove old core files (which now get left in cwd, not $TEST_DIR).
91 rm -rf ./*core*
93 if [ -f $RESULTS_FILE ]; then
94 rm $RESULTS_FILE
96 if [ -f $LOG_FILE ]; then
97 rm $LOG_FILE
100 # Make a list of the files we're going to run, or use an old one if it exists.
101 if [ ! -f "$TESTS_FILE" ]; then
102 if [ -f "$TEST_DIR/testsuite_files" ]; then
103 cp $TEST_DIR/testsuite_files $TESTS_FILE
104 else
105 echo "making file $TESTS_FILE"
106 for LONG_NAME in $SRC_DIR/testsuite/*/*.cc
108 DIR_NAME=$(dirname $LONG_NAME)
109 SHORT_NAME="`basename $DIR_NAME`/`basename $LONG_NAME`"
110 echo "$SHORT_NAME" >> $TESTS_FILE
111 done
115 # Nasty solution to replace GNU date(1)'s %s time_t output function.
116 TIMER_COMMAND=$TEST_DIR/printnow.exe
117 if [ ! -x "$TIMER_COMMAND" ]; then
118 echo "making utility $TIMER_COMMAND"
119 gcc -o "$TIMER_COMMAND" "$SRC_DIR/testsuite/printnow.c"
120 strip "$TIMER_COMMAND"
123 # Copy over the data files for filebufs
124 cp $SRC_DIR/testsuite/27_io/*.txt $TEST_DIR
125 cp $SRC_DIR/testsuite/27_io/*.tst $TEST_DIR
126 chmod u+w $TEST_DIR/*.txt
127 chmod u+w $TEST_DIR/*.tst
129 # Emit useful info about compiler and platform
130 echo "host: $(uname -mrsv)" >> $RESULTS_FILE
131 echo "compiler: $($CXX -v 2>&1)" >> $RESULTS_FILE
132 echo "compiler flags: $CXXFLAGS" >> $RESULTS_FILE
133 echo "date: $(date +%Y%m%d)" >> $RESULTS_FILE
134 echo "" >> $RESULTS_FILE
136 explanation='+: pass, -b: build failure, -r: run failure, x: disabled'
137 printf "%s\n %s\n" 'p == pass/fail execution test' "$explanation" \
138 >> $RESULTS_FILE
139 echo "ctime == time to compile and link" >> $RESULTS_FILE
140 echo "etime == time for executable to run" >> $RESULTS_FILE
141 echo "text == size of the executable text section" >> $RESULTS_FILE
142 echo "data == size of the executable data section" >> $RESULTS_FILE
143 echo "total == size of the executable" >> $RESULTS_FILE
144 echo "" >> $RESULTS_FILE
146 echo "p" | awk '{printf("%s ", $1)}' >> $RESULTS_FILE
147 echo "ctime" "etime" | awk '{printf("%s\t%s\t", $1, $2)}' >> $RESULTS_FILE
148 echo "text" "data" | awk '{printf("%s\t%s\t", $1, $2)}' >> $RESULTS_FILE
149 echo "total" "name" | awk '{printf("%s\t%s\t", $1, $2)}' >> $RESULTS_FILE
150 echo "" >> $RESULTS_FILE
152 # Counters. These could be members of an array, but they'd all have to
153 # become individuals anyhow if we ever change this script to super-portable sh.
154 shared_pass=0
155 shared_fail=0
156 static_pass=0
157 static_fail=0
161 # 2.5: support functions
164 # Figure out how to extract size information from binaries. We take
165 # the text of the value we want as an argument, and leave the size in
166 # the appropriate variable.
168 # We discover what kind of size(1) we are using *once* and build a shell
169 # function named 'size_command' to wrap it. (The "function" keyword is
170 # redundant here, but helps me read it, so there.) Previously we were
171 # re-discovering the size(1) arguments three times for each test; sloooow.
173 # It is VERY IMPORTANT not to compare these numbers across platforms.
174 # Different size(1)'s extract section information differently. For
175 # example, using the native Sun size(1) and GNU size(1) built for Suns
176 # on the exact same binary will give very different numbers, due to all
177 # the variance in command-line options and arbitrary names of ELF sections.
179 # and suddenly we go to 2-space indentations...
180 setup_size_command()
182 if size --version 2> /dev/null | grep -c GNU > /dev/null;
183 then # Then we're using a GNU size(1) built for this platform.
184 # We lose .rodata and .data1 and who knows what else... kludge.
185 function size_command()
187 case $1 in
188 TEXT) TEXT=$(size -B $EXENAME | tail -1 | awk '{print $1}') ;;
189 DATA) DATA=$(size -B $EXENAME | tail -1 | awk '{print $2}') ;;
190 SIZE) SIZE=$(size -B $EXENAME | tail -1 | awk '{print $4}') ;;
191 esac
193 else
194 # Not using GNU size; check for platform. These numbers seem to match
195 # up to text/data/total, although their meanings seem to be different.
196 # THIS TABLE IS SORTED. KEEP IT THAT WAY.
197 case @host_os@ in
198 *aix*)
199 function size_command()
201 case $1 in
202 TEXT) TEXT=$(size -X32_64 $EXENAME | awk '{print $2}') ;;
203 DATA) DATA=$(size -X32_64 $EXENAME | awk '{print $4}') ;;
204 SIZE) SIZE=$(size -X32_64 $EXENAME | awk '{print $12}') ;;
205 esac
208 *hpux*)
209 function size_command()
211 case $1 in
212 TEXT) TEXT=$(size $EXENAME | awk '{print $1}') ;;
213 DATA) DATA=$(size $EXENAME | awk '{print $3}') ;;
214 SIZE) SIZE=$(size $EXENAME | awk '{print $7}') ;;
215 esac
218 *irix*)
219 function size_command()
221 case $1 in
222 TEXT) TEXT=$(size -4 $EXENAME | awk '{print $1}') ;;
223 DATA) DATA=$(size -4 $EXENAME | awk '{print $3}') ;;
224 SIZE) SIZE=$(size -4 $EXENAME | awk '{print $7}') ;;
225 esac
228 *solaris*)
229 function size_command()
231 case $1 in
232 TEXT) TEXT=$(size $EXENAME | awk '{print $1}') ;;
233 DATA) DATA=$(size $EXENAME | awk '{print $3}') ;;
234 SIZE) SIZE=$(size $EXENAME | awk '{print $7}') ;;
235 esac
239 echo ' * Warning! Skipping section sizes!' 1>&2
240 function size_command()
242 case $1 in
243 TEXT) TEXT=0 ;;
244 DATA) DATA=0 ;;
245 SIZE) SIZE=0 ;;
246 esac
249 esac
253 # Test for file output
254 test_for_output()
256 # This checks for emitted output files, which is useful when
257 # testing file-related output. The rules for this working are as
258 # follows: the emitted file must have the ".txt" extension, and be
259 # based on the actual *.cc file's name. For example, 27/filbuf.cc
260 # currently outputs files named 27/filebuf-2.txt and 27/filebuf-3.txt.
261 # Also, the first emitted file must be in the form $NAME-1.txt.
262 # The control file must follow the same constraints, but have a
263 # ".tst" extension. Thus, you have 27/filebuf-2.tst, etc.
265 # NAME contains the source name, like 27/filebuf.cc
266 # From that NAME, we want to generate some possible names, using
267 # ls on MATCH, a pattern description generated with sed.
269 # this is the name of the resulting diff file, if any
270 DIFF_FILE="`echo $TEST_NAME | sed 's/cc$/diff/'`"
271 # construct wildcard names, ie for $NAME=filebuf.cc, makes "filebuf*.tst"
272 DATA_FILES="`echo $TEST_NAME | sed 's/\.cc/\*\.tst/g'`"
273 # make sure there is at least one, then go
274 ST_E="`echo $TEST_NAME | sed 's/\.cc/\-1\.tst/g'`"
275 if [ -f $ST_E ]; then
276 # list of actual files that match the wildcard above, ie
277 # "filebuf-1.tst"
278 ST_MATCH_LIST="`ls $DATA_FILES`"
279 for i in $ST_MATCH_LIST; do
280 # ST_OUT_FILE is generated in the build directory.
281 PRE_NAME2="$TEST_DIR/`basename $i`"
282 ST_OUT_FILE="`echo $PRE_NAME2 | sed 's/tst$/txt/'`"
283 diff $ST_OUT_FILE $i > $DIFF_FILE
284 if [ -s $DIFF_FILE ]; then
285 RESULT="-r"
286 else
287 RESULT="+"
289 rm $DIFF_FILE
290 done
291 else
292 # the file does no output, and didn't abnormally
293 # terminate, so assume passed.
294 RESULT="+"
300 # 3: compile, link, execute, time
302 # Abstract out the common code for compiling, linking, executing and printing.
303 test_file()
305 # NB: S_FLAG has to be last argument because it may be null, and
306 # error checking hasn't been invented yet.
307 NAME=$1
308 EXENAME=$2
309 S_FLAG=$3
311 SRC_NAME="$SRC_DIR/testsuite/$1"
312 TEST_NAME="$TEST_DIR/`basename $NAME`"
314 # This would be deliciously easy if GNU date's %s were always around.
315 # There are three ways to do this: 1) use the builtin 'time' like we
316 # do later; then getting compiler errors into LOG_FILE is a nightmare.
317 # 2) Grab the output of a formatted date(1) and do the math; harder
318 # and harder as we try compiling at, say, top of the hour; we would
319 # eventually have to calculate time_t anyhow. Or 3) just grab two
320 # time_t's (no more overhead than grabbing two date(1)'s).
321 our_libs="-L$TEST_DIR -lv3test"
322 compiler_invocation="$LTCXX $S_FLAG $SRC_NAME -o $EXENAME $our_libs"
323 echo $compiler_invocation >> compile.out 2>&1
324 COMP_TIME_START=$($TIMER_COMMAND)
325 $compiler_invocation >> compile.out 2>&1
326 COMP_TIME_END=$($TIMER_COMMAND)
328 if [ $COMP_TIME_START -lt $COMP_TIME_END ]; then
329 C_TIME=$[ $COMP_TIME_END - $COMP_TIME_START ]
330 else
331 C_TIME="0"
334 if [ -f $EXENAME ]; then
335 # rm compile.out
336 size_command TEXT
337 size_command DATA
338 size_command SIZE
340 # Actually run the executable and time it. Note that output
341 # printed by the executable will be lost and cannot be redirected,
342 # because we need to capture the output of 'time'. Bummer.
343 TIMEFORMAT='timemark %R'
344 E_TIME_TEXT="$(exec 2>&1; time $LTEXE $EXENAME)"
345 E_ABNORMAL_TERMINATION=$?
347 if [ "$E_ABNORMAL_TERMINATION" -ne 0 ]; then
348 RESULT='-r'
349 E_TIME="0"
350 rm -f ./*core
351 # sometimes you want to save all core files for review:
352 #mv ./core $EXENAME.core
353 # sometimes the OS allows you to name core files yourself:
354 #mv ./*core $EXENAME.core
355 #mv ./core* $EXENAME.core
356 else
357 test_for_output
358 # XXX This doesn't always result in a number.
359 # E_TIME="$(echo $E_TIME_TEXT | awk '{print $2}')"
360 E_TIME="0"
363 # sometimes you want to save all failing exe files for review:
364 if [ "$RESULT" = '+' ]; then
365 rm "$EXENAME"
367 else
368 # the file did not compile/link.
369 printf "\n" >> $LOG_FILE
370 `cat compile.out >> $LOG_FILE`
371 rm compile.out
372 RESULT="-b"
373 TEXT="0"
374 DATA="0"
375 SIZE="0"
378 # update the counters
379 if test "$RESULT" = "+" ; then
380 if test x"$S_FLAG" = x"$ST_FLAG"; then
381 static_pass=`expr $static_pass + 1`
382 else
383 shared_pass=`expr $shared_pass + 1`
385 else
386 if test x"$S_FLAG" = x"$ST_FLAG"; then
387 static_fail=`expr $static_fail + 1`
388 else
389 shared_fail=`expr $shared_fail + 1`
393 printf "%s\t" "$RESULT"
394 printf "%-2s %d\t%.3f\t%s\t%s\t%s\t%s %s\n" \
395 "$RESULT" $C_TIME $E_TIME $TEXT $DATA $SIZE $NAME >> $RESULTS_FILE
398 setup_size_command
399 echo ""
400 echo "Detailed test results in .${RESULTS_FILE/$BUILD_DIR}"
401 echo $explanation
402 echo "------------------------------------------------------------------------"
403 printf "static\tshared\ttest\n"
404 echo "------------------------------------------------------------------------"
406 TEST_TIME_START=$($TIMER_COMMAND)
407 for NAME in `cat $TESTS_FILE`
409 PRE_NAME="$TEST_DIR/`basename $NAME`"
410 ST_NAME="`echo $PRE_NAME | sed 's/cc$/st-exe/'`"
411 SH_NAME="`echo $PRE_NAME | sed 's/cc$/sh-exe/'`"
413 if test @enable_static@ = yes; then
414 test_file $NAME $ST_NAME "$ST_FLAG"
415 else
416 printf "x\t"
417 printf "static skipped\n" >> $RESULTS_FILE
419 if test @enable_shared@ = yes; then
420 test_file $NAME $SH_NAME "$SH_FLAG"
421 else
422 printf "x\t"
423 printf "shared skipped\n" >> $RESULTS_FILE
425 printf "%s\n" "$NAME"
427 echo "" >> $RESULTS_FILE
428 done
429 TEST_TIME_END=$($TIMER_COMMAND)
433 # 4: summary
435 # grep can count faster than we can...
436 total_failures=`expr ${shared_fail} + ${static_fail}`
437 total_successes=`expr ${shared_pass} + ${static_pass}`
438 resultstext="pass/fail results: ${static_pass}/${static_fail} static + ${shared_pass}/${shared_fail} shared = ${total_successes}/${total_failures} total"
439 if [ $total_failures -eq 0 ]; then
440 resultstext="${resultstext}, WIN WIN"
442 sed -e "/^date:/a\\
443 $resultstext" $RESULTS_FILE > ${RESULTS_FILE}.tmp
444 mv ${RESULTS_FILE}.tmp $RESULTS_FILE
446 if [ $TEST_TIME_START -lt $TEST_TIME_END ]; then
447 TEST_TIME=$[ $TEST_TIME_END - $TEST_TIME_START ]
448 echo "testrun == $TEST_TIME seconds"
449 echo "testrun == $TEST_TIME seconds" >> $RESULTS_FILE
452 exit 0