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
15 # WHICH determines if you are
16 # (0) testing the build binary and headers, or
17 # (1) testing the installed binary and headers, or
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"
26 echo 'Usage: mkcheck 0 /* test the build directory */'
27 echo ' mkcheck 1 /* test the install directory */'
31 # Now that we've successfully translated the numerical option into
32 # a symbolic one, we can safely ignore it.
35 # This has been true all along. Found out about it the hard way...
37 1*) echo 'You need bash 2.x to run mkcheck. Exiting.'; exit 1 ;;
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`
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
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
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).
93 if [ -f $RESULTS_FILE ]; then
96 if [ -f $LOG_FILE ]; then
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 echo "making file $TESTS_FILE"
103 for LONG_NAME
in $SRC_DIR/testsuite
/*/*.cc
105 DIR_NAME
=$
(dirname $LONG_NAME)
106 SHORT_NAME
="`basename $DIR_NAME`/`basename $LONG_NAME`"
107 echo "$SHORT_NAME" >> $TESTS_FILE
111 # Nasty solution to replace GNU date(1)'s %s time_t output function.
112 TIMER_COMMAND
=$TEST_DIR/printnow.exe
113 if [ ! -x "$TIMER_COMMAND" ]; then
114 echo "making utility $TIMER_COMMAND"
115 gcc
-o "$TIMER_COMMAND" "$SRC_DIR/testsuite/printnow.c"
116 strip
"$TIMER_COMMAND"
119 # Copy over the data files for filebufs
120 cp $SRC_DIR/testsuite
/27_io
/*.txt
$TEST_DIR
121 cp $SRC_DIR/testsuite
/27_io
/*.tst
$TEST_DIR
122 chmod u
+w
$TEST_DIR/*.txt
123 chmod u
+w
$TEST_DIR/*.tst
125 # Emit useful info about compiler and platform
126 echo "host: $(uname -mrsv)" >> $RESULTS_FILE
127 echo "compiler: $($CXX -v 2>&1)" >> $RESULTS_FILE
128 echo "compiler flags: $CXXFLAGS" >> $RESULTS_FILE
129 echo "date: $(date +%Y%m%d)" >> $RESULTS_FILE
130 echo "" >> $RESULTS_FILE
132 explanation
='+: pass, -b: build failure, -r: run failure, x: disabled'
133 printf "%s\n %s\n" 'p == pass/fail execution test' "$explanation" \
135 echo "ctime == time to compile and link" >> $RESULTS_FILE
136 echo "etime == time for executable to run" >> $RESULTS_FILE
137 echo "text == size of the executable text section" >> $RESULTS_FILE
138 echo "data == size of the executable data section" >> $RESULTS_FILE
139 echo "total == size of the executable" >> $RESULTS_FILE
140 echo "" >> $RESULTS_FILE
142 echo "p" |
awk '{printf("%s ", $1)}' >> $RESULTS_FILE
143 echo "ctime" "etime" |
awk '{printf("%s\t%s\t", $1, $2)}' >> $RESULTS_FILE
144 echo "text" "data" |
awk '{printf("%s\t%s\t", $1, $2)}' >> $RESULTS_FILE
145 echo "total" "name" |
awk '{printf("%s\t%s\t", $1, $2)}' >> $RESULTS_FILE
146 echo "" >> $RESULTS_FILE
148 # Counters. These could be members of an array, but they'd all have to
149 # become individuals anyhow if we ever change this script to super-portable sh.
157 # 2.5: support functions
160 # Figure out how to extract size information from binaries. We take
161 # the text of the value we want as an argument, and leave the size in
162 # the appropriate variable.
164 # We discover what kind of size(1) we are using *once* and build a shell
165 # function named 'size_command' to wrap it. (The "function" keyword is
166 # redundant here, but helps me read it, so there.) Previously we were
167 # re-discovering the size(1) arguments three times for each test; sloooow.
169 # It is VERY IMPORTANT not to compare these numbers across platforms.
170 # Different size(1)'s extract section information differently. For
171 # example, using the native Sun size(1) and GNU size(1) built for Suns
172 # on the exact same binary will give very different numbers, due to all
173 # the variance in command-line options and arbitrary names of ELF sections.
175 # and suddenly we go to 2-space indentations...
178 if size
--version 2> /dev
/null |
grep -c GNU
> /dev
/null
;
179 then # Then we're using a GNU size(1) built for this platform.
180 # We lose .rodata and .data1 and who knows what else... kludge.
181 function size_command
()
184 TEXT
) TEXT
=$
(size
-B $EXENAME |
tail -1 |
awk '{print $1}') ;;
185 DATA
) DATA
=$
(size
-B $EXENAME |
tail -1 |
awk '{print $2}') ;;
186 SIZE
) SIZE
=$
(size
-B $EXENAME |
tail -1 |
awk '{print $4}') ;;
190 # Not using GNU size; check for platform. These numbers seem to match
191 # up to text/data/total, although their meanings seem to be different.
192 # THIS TABLE IS SORTED. KEEP IT THAT WAY.
195 function size_command
()
198 TEXT
) TEXT
=$
(size
-X32_64 $EXENAME |
awk '{print $2}') ;;
199 DATA
) DATA
=$
(size
-X32_64 $EXENAME |
awk '{print $4}') ;;
200 SIZE
) SIZE
=$
(size
-X32_64 $EXENAME |
awk '{print $12}') ;;
205 function size_command
()
208 TEXT
) TEXT
=$
(size
$EXENAME |
awk '{print $1}') ;;
209 DATA
) DATA
=$
(size
$EXENAME |
awk '{print $3}') ;;
210 SIZE
) SIZE
=$
(size
$EXENAME |
awk '{print $7}') ;;
215 function size_command
()
218 TEXT
) TEXT
=$
(size
-4 $EXENAME |
awk '{print $1}') ;;
219 DATA
) DATA
=$
(size
-4 $EXENAME |
awk '{print $3}') ;;
220 SIZE
) SIZE
=$
(size
-4 $EXENAME |
awk '{print $7}') ;;
225 function size_command
()
228 TEXT
) TEXT
=$
(size
$EXENAME |
awk '{print $1}') ;;
229 DATA
) DATA
=$
(size
$EXENAME |
awk '{print $3}') ;;
230 SIZE
) SIZE
=$
(size
$EXENAME |
awk '{print $7}') ;;
235 echo ' * Warning! Skipping section sizes!' 1>&2
236 function size_command
()
249 # Test for file output
252 # This checks for emitted output files, which is useful when
253 # testing file-related output. The rules for this working are as
254 # follows: the emitted file must have the ".txt" extension, and be
255 # based on the actual *.cc file's name. For example, 27/filbuf.cc
256 # currently outputs files named 27/filebuf-2.txt and 27/filebuf-3.txt.
257 # Also, the first emitted file must be in the form $NAME-1.txt.
258 # The control file must follow the same constraints, but have a
259 # ".tst" extension. Thus, you have 27/filebuf-2.tst, etc.
261 # NAME contains the source name, like 27/filebuf.cc
262 # From that NAME, we want to generate some possible names, using
263 # ls on MATCH, a pattern description generated with sed.
265 # this is the name of the resulting diff file, if any
266 DIFF_FILE
="`echo $TEST_NAME | sed 's/cc$/diff/'`"
267 # construct wildcard names, ie for $NAME=filebuf.cc, makes "filebuf*.tst"
268 DATA_FILES
="`echo $TEST_NAME | sed 's/\.cc/\*\.tst/g'`"
269 # make sure there is at least one, then go
270 ST_E
="`echo $TEST_NAME | sed 's/\.cc/\-1\.tst/g'`"
271 if [ -f $ST_E ]; then
272 # list of actual files that match the wildcard above, ie
274 ST_MATCH_LIST
="`ls $DATA_FILES`"
275 for i
in $ST_MATCH_LIST; do
276 # ST_OUT_FILE is generated in the build directory.
277 PRE_NAME2
="$TEST_DIR/`basename $i`"
278 ST_OUT_FILE
="`echo $PRE_NAME2 | sed 's/tst$/txt/'`"
279 diff $ST_OUT_FILE $i > $DIFF_FILE
280 if [ -s $DIFF_FILE ]; then
288 # the file does no output, and didn't abnormally
289 # terminate, so assume passed.
296 # 3: compile, link, execute, time
298 # Abstract out the common code for compiling, linking, executing and printing.
301 # NB: S_FLAG has to be last argument because it may be null, and
302 # error checking hasn't been invented yet.
307 SRC_NAME
="$SRC_DIR/testsuite/$1"
308 TEST_NAME
="$TEST_DIR/`basename $NAME`"
310 # This would be deliciously easy if GNU date's %s were always around.
311 # There are three ways to do this: 1) use the builtin 'time' like we
312 # do later; then getting compiler errors into LOG_FILE is a nightmare.
313 # 2) Grab the output of a formatted date(1) and do the math; harder
314 # and harder as we try compiling at, say, top of the hour; we would
315 # eventually have to calculate time_t anyhow. Or 3) just grab two
316 # time_t's (no more overhead than grabbing two date(1)'s).
317 compiler_invocation
="$LTCXX $S_FLAG $SRC_NAME -o $EXENAME"
318 echo $compiler_invocation >> compile.out
2>&1
319 COMP_TIME_START
=$
($TIMER_COMMAND)
320 $compiler_invocation >> compile.out
2>&1
321 COMP_TIME_END
=$
($TIMER_COMMAND)
323 if [ $COMP_TIME_START -lt $COMP_TIME_END ]; then
324 C_TIME
=$
[ $COMP_TIME_END - $COMP_TIME_START ]
329 if [ -f $EXENAME ]; then
335 # Actually run the executable and time it. Note that output
336 # printed by the executable will be lost and cannot be redirected,
337 # because we need to capture the output of 'time'. Bummer.
338 TIMEFORMAT
='timemark %R'
339 E_TIME_TEXT
="$(exec 2>&1; time $LTEXE $EXENAME)"
340 E_ABNORMAL_TERMINATION
=$?
342 if [ "$E_ABNORMAL_TERMINATION" -ne 0 ]; then
346 # sometimes you want to save all core files for review:
347 #mv ./core $EXENAME.core
348 # sometimes the OS allows you to name core files yourself:
349 #mv ./*core $EXENAME.core
350 #mv ./core* $EXENAME.core
353 # XXX This doesn't always result in a number.
354 # E_TIME="$(echo $E_TIME_TEXT | awk '{print $2}')"
358 # sometimes you want to save all failing exe files for review:
359 if [ "$RESULT" = '+' ]; then
363 # the file did not compile/link.
364 printf "\n" >> $LOG_FILE
365 `cat compile.out >> $LOG_FILE`
373 # update the counters
374 if test "$RESULT" = "+" ; then
375 if test x
"$S_FLAG" = x
"$ST_FLAG"; then
376 static_pass
=`expr $static_pass + 1`
378 shared_pass
=`expr $shared_pass + 1`
381 if test x
"$S_FLAG" = x
"$ST_FLAG"; then
382 static_fail
=`expr $static_fail + 1`
384 shared_fail
=`expr $shared_fail + 1`
388 printf "%s\t" "$RESULT"
389 printf "%-2s %d\t%.3f\t%s\t%s\t%s\t%s %s\n" \
390 "$RESULT" $C_TIME $E_TIME $TEXT $DATA $SIZE $NAME >> $RESULTS_FILE
395 echo "Detailed test results in .${RESULTS_FILE/$BUILD_DIR}"
397 echo "------------------------------------------------------------------------"
398 printf "static\tshared\ttest\n"
399 echo "------------------------------------------------------------------------"
401 TEST_TIME_START
=$
($TIMER_COMMAND)
402 for NAME
in `cat $TESTS_FILE`
404 PRE_NAME
="$TEST_DIR/`basename $NAME`"
405 ST_NAME
="`echo $PRE_NAME | sed 's/cc$/st-exe/'`"
406 SH_NAME
="`echo $PRE_NAME | sed 's/cc$/sh-exe/'`"
408 if test @enable_static@
= yes; then
409 test_file
$NAME $ST_NAME "$ST_FLAG"
412 printf "static skipped\n" >> $RESULTS_FILE
414 if test @enable_shared@
= yes; then
415 test_file
$NAME $SH_NAME "$SH_FLAG"
418 printf "shared skipped\n" >> $RESULTS_FILE
420 printf "%s\n" "$NAME"
422 echo "" >> $RESULTS_FILE
424 TEST_TIME_END
=$
($TIMER_COMMAND)
430 # grep can count faster than we can...
431 total_failures
=`expr ${shared_fail} + ${static_fail}`
432 total_successes
=`expr ${shared_pass} + ${static_pass}`
433 resultstext
="pass/fail results: ${static_pass}/${static_fail} static + ${shared_pass}/${shared_fail} shared = ${total_successes}/${total_failures} total"
434 if [ $total_failures -eq 0 ]; then
435 resultstext
="${resultstext}, WIN WIN"
438 $resultstext" $RESULTS_FILE > ${RESULTS_FILE}.tmp
439 mv ${RESULTS_FILE}.tmp
$RESULTS_FILE
441 if [ $TEST_TIME_START -lt $TEST_TIME_END ]; then
442 TEST_TIME
=$
[ $TEST_TIME_END - $TEST_TIME_START ]
443 echo "testrun == $TEST_TIME seconds"
444 echo "testrun == $TEST_TIME seconds" >> $RESULTS_FILE