4 # Script to do automated testing and data collection for various test
5 # files, so that we don't have to do this by hand on every test file.
6 # It attempts to collect some diagnostic info about size and speed that
7 # should be useful in the future as the library gets tuned for size
8 # and speed. In addition, it tests static and shared linkage, iff each
12 # mkcheck [01] (path to build) (path to src) (path to install)
14 ### XXX There are a lot of tests in here for OS-specific stuff. If we
15 ### move to a 'configure.target' method of determining those extra
16 ### flags and whatnot, we can take out all those things and source
17 ### that file from here. (Write that file with this in mind...)
19 ### XXX Note that breaking out of this with ^C will not work. Dunno why.
24 # WHICH determines if you are
25 # (0) testing the build binary and headers, or
26 # (1) testing the installed binary and headers, or
28 if [ "$WHICH"x
= 0x
] && [ $# -eq 3 ]; then
29 echo "running mkcheck"
30 echo "$0: testing the build directory"
31 query
="--built-library"
32 elif [ "$WHICH"x
= 1x
] && [ $# -eq 4 ]; then
33 echo "running mkcheck"
34 echo "$0: testing the install directory $4"
35 query
="--installed-library"
37 echo 'Usage: mkcheck 0 (path to build) (path to src)'
38 echo ' mkcheck 1 (path to build) (path to src) (path to install)'
42 # Now that we've successfully translated the numerical option into
43 # a symbolic one, we can safely ignore it.
46 # This has been true all along. Found out about it the hard way...
48 1*) echo 'You need bash 2.x to run mkcheck. Exiting.'; exit 1 ;;
52 # Compute the flags necessary to run the testsuite.
55 set `./tests_flags ${query} $*` ||
exit 1
56 BUILD_DIR
=$1; SRC_DIR
=$2; PREFIX_DIR
=$3; LTCXX
=$4; LIBS
=$5; LTEXE
=$6; CXX
=$7; CXXFLAGS
=$8;
59 # specific libtool flag(s) to force the use of shared libraries, if any
62 # specific libtool flag(s) to force the use of static libraries, if any
64 #ST_FLAG="-all-static"
66 # Set up the testing directory, which should be in a directory called
67 # "testsuite" in the root level of the build directory.
68 TEST_DIR
="`pwd`/testsuite"
69 if [ ! -d "$TEST_DIR" ]; then
70 echo "making directory $TEST_DIR"
72 mkdir
$TEST_DIR/.libs
# help libtool keep quiet
76 # the name of the file that will collect and hold all this useful data:
77 RESULTS_FILE
="$TEST_DIR/$(date +%Y%m%d)-mkcheck.txt"
79 # the name of the log file that will append compiler diagnostics:
80 LOG_FILE
="$TEST_DIR/$(date +%Y%m%d)-mkchecklog.txt"
82 # the names of the specific test files to be run
83 TESTS_FILE
="$TEST_DIR/$(date +%Y%m%d)-mkcheckfiles.txt"
85 # the heap size limit for testsuite binaries; start with a 2MB limit as per
86 # http://sources.redhat.com/ml/libstdc++/2000-10/msg00029.html
90 # 2: clean, make files, append general test info
93 # Remove old executables.
94 rm -rf "$TEST_DIR"/*exe
96 # Remove old core files (which now get left in cwd, not $TEST_DIR).
99 if [ -f $RESULTS_FILE ]; then
102 if [ -f $LOG_FILE ]; then
106 # Make a list of the files we're going to run, or use an old one if it exists.
107 if [ ! -f "$TESTS_FILE" ]; then
108 echo "making file $TESTS_FILE"
109 for LONG_NAME
in $SRC_DIR/testsuite
/*/*.cc
111 DIR_NAME
=$
(dirname $LONG_NAME)
112 SHORT_NAME
="`basename $DIR_NAME`/`basename $LONG_NAME`"
113 echo "$SHORT_NAME" >> $TESTS_FILE
117 # Nasty solution to replace GNU date(1)'s %s time_t output function.
118 TIMER_COMMAND
=$TEST_DIR/printnow.exe
119 if [ ! -x "$TIMER_COMMAND" ]; then
120 echo "making utility $TIMER_COMMAND"
121 gcc
-o "$TIMER_COMMAND" "$SRC_DIR/testsuite/printnow.c"
122 strip
"$TIMER_COMMAND"
125 # Copy over the data files for filebufs
126 cp $SRC_DIR/testsuite
/27_io
/*.txt
$TEST_DIR
127 cp $SRC_DIR/testsuite
/27_io
/*.tst
$TEST_DIR
128 chmod u
+w
$TEST_DIR/*.txt
129 chmod u
+w
$TEST_DIR/*.tst
131 # Emit useful info about compiler and platform
132 echo "host: $(uname -mrsv)" >> $RESULTS_FILE
133 echo "compiler: $($CXX -v 2>&1)" >> $RESULTS_FILE
134 echo "compiler flags: $CXXFLAGS" >> $RESULTS_FILE
135 echo "date: $(date +%Y%m%d)" >> $RESULTS_FILE
136 echo "" >> $RESULTS_FILE
138 explanation
='+: pass, -b: build failure, -r: run failure, x: disabled'
139 printf "%s\n %s\n" 'p == pass/fail execution test' "$explanation" \
141 echo "ctime == time to compile and link" >> $RESULTS_FILE
142 echo "etime == time for executable to run" >> $RESULTS_FILE
143 echo "text == size of the executable text section" >> $RESULTS_FILE
144 echo "data == size of the executable data section" >> $RESULTS_FILE
145 echo "total == size of the executable" >> $RESULTS_FILE
146 echo "" >> $RESULTS_FILE
148 echo "p" |
awk '{printf("%s ", $1)}' >> $RESULTS_FILE
149 echo "ctime" "etime" |
awk '{printf("%s\t%s\t", $1, $2)}' >> $RESULTS_FILE
150 echo "text" "data" |
awk '{printf("%s\t%s\t", $1, $2)}' >> $RESULTS_FILE
151 echo "total" "name" |
awk '{printf("%s\t%s\t", $1, $2)}' >> $RESULTS_FILE
152 echo "" >> $RESULTS_FILE
154 # Counters. These could be members of an array, but they'd all have to
155 # become individuals anyhow if we ever change this script to super-portable sh.
163 # 2.5: support functions
166 # Figure out how to extract size information from binaries. We take
167 # the text of the value we want as an argument, and leave the size in
168 # the appropriate variable.
170 # We discover what kind of size(1) we are using *once* and build a shell
171 # function named 'size_command' to wrap it. (The "function" keyword is
172 # redundant here, but helps me read it, so there.) Previously we were
173 # re-discovering the size(1) arguments three times for each test; sloooow.
175 # It is VERY IMPORTANT not to compare these numbers across platforms.
176 # Different size(1)'s extract section information differently. For
177 # example, using the native Sun size(1) and GNU size(1) built for Suns
178 # on the exact same binary will give very different numbers, due to all
179 # the variance in command-line options and arbitrary names of ELF sections.
181 # and suddenly we go to 2-space indentations...
184 if size
--version 2> /dev
/null |
grep -c GNU
> /dev
/null
;
185 then # Then we're using a GNU size(1) built for this platform.
186 # We lose .rodata and .data1 and who knows what else... kludge.
187 function size_command
()
190 TEXT
) TEXT
=$
(size
-A $EXENAME |
grep ^.text |
awk '{print $2}') ;;
191 DATA
) DATA
=$
(size
-A $EXENAME |
grep -w ^.data |
awk '{print $2}') ;;
192 SIZE
) SIZE
=$
(size
-A $EXENAME |
grep otal |
awk '{print $2}') ;;
196 # Not using GNU size; check for platform. These numbers seem to match
197 # up to text/data/total, although their meanings seem to be different.
198 # THIS TABLE IS SORTED. KEEP IT THAT WAY.
201 function size_command
()
204 TEXT
) TEXT
=$
(size
-X32_64 $EXENAME |
awk '{print $2}') ;;
205 DATA
) DATA
=$
(size
-X32_64 $EXENAME |
awk '{print $4}') ;;
206 SIZE
) SIZE
=$
(size
-X32_64 $EXENAME |
awk '{print $12}') ;;
211 function size_command
()
214 TEXT
) TEXT
=$
(size
-4 $EXENAME |
awk '{print $1}') ;;
215 DATA
) DATA
=$
(size
-4 $EXENAME |
awk '{print $3}') ;;
216 SIZE
) SIZE
=$
(size
-4 $EXENAME |
awk '{print $7}') ;;
221 function size_command
()
224 TEXT
) TEXT
=$
(size
$EXENAME |
awk '{print $1}') ;;
225 DATA
) DATA
=$
(size
$EXENAME |
awk '{print $3}') ;;
226 SIZE
) SIZE
=$
(size
$EXENAME |
awk '{print $7}') ;;
231 echo ' * Warning! Skipping section sizes!' 1>&2
232 function size_command
()
245 # Test for file output
248 # This checks for emitted output files, which is useful when
249 # testing file-related output. The rules for this working are as
250 # follows: the emitted file must have the ".txt" extension, and be
251 # based on the actual *.cc file's name. For example, 27/filbuf.cc
252 # currently outputs files named 27/filebuf-2.txt and 27/filebuf-3.txt.
253 # Also, the first emitted file must be in the form $NAME-1.txt.
254 # The control file must follow the same constraints, but have a
255 # ".tst" extension. Thus, you have 27/filebuf-2.tst, etc.
257 # NAME contains the source name, like 27/filebuf.cc
258 # From that NAME, we want to generate some possible names, using
259 # ls on MATCH, a pattern description generated with sed.
261 # this is the name of the resulting diff file, if any
262 DIFF_FILE
="`echo $TEST_NAME | sed 's/cc$/diff/'`"
263 # construct wildcard names, ie for $NAME=filebuf.cc, makes "filebuf*.tst"
264 DATA_FILES
="`echo $NAME | sed 's/\.cc/\*\.tst/g'`"
265 # make sure there is at least one, then go
266 ST_E
="`echo $NAME | sed 's/\.cc/\-1\.tst/g'`"
267 if [ -f $ST_E ]; then
268 # list of actual files that match the wildcard above, ie
270 ST_MATCH_LIST
="`ls $DATA_FILES`"
271 for i
in $ST_MATCH_LIST; do
272 # ST_OUT_FILE is generated in the build directory.
273 PRE_NAME2
="$TEST_DIR/`basename $i`"
274 ST_OUT_FILE
="`echo $PRE_NAME2 | sed 's/tst$/txt/'`"
275 diff $ST_OUT_FILE $i > $DIFF_FILE
276 if [ -s $DIFF_FILE ]; then
278 echo "$ST_OUT_FILE has some problems, dude"
285 # the file does no output, and didn't abnormally
286 # terminate, so assume passed.
293 # 3: compile, link, execute, time
295 # Abstract out the common code for compiling, linking, executing and printing.
298 # NB: S_FLAG has to be last argument because it may be null, and
299 # error checking hasn't been invented yet.
304 SRC_NAME
="$SRC_DIR/testsuite/$1"
305 TEST_NAME
="$TEST_DIR/`basename $NAME`"
307 # This would be deliciously easy if GNU date's %s were always around.
308 # There are three ways to do this: 1) use the builtin 'time' like we
309 # do later; then getting compiler errors into LOG_FILE is a nightmare.
310 # 2) Grab the output of a formatted date(1) and do the math; harder
311 # and harder as we try compiling at, say, top of the hour; we would
312 # eventually have to calculate time_t anyhow. Or 3) just grab two
313 # time_t's (no more overhead than grabbing two date(1)'s).
314 compiler_invocation
="$LTCXX $S_FLAG $SRC_NAME -o $EXENAME $LIBS"
315 COMP_TIME_START
=$
($TIMER_COMMAND)
316 $compiler_invocation >> compile.out
2>&1
317 COMP_TIME_END
=$
($TIMER_COMMAND)
319 if [ $COMP_TIME_START -lt $COMP_TIME_END ]; then
320 C_TIME
=$
[ $COMP_TIME_END - $COMP_TIME_START ]
325 if [ -f $EXENAME ]; then
331 # Actually run the executable and time it. Note that output
332 # printed by the executable will be lost and cannot be redirected,
333 # because we need to capture the output of 'time'. Bummer.
334 TIMEFORMAT
='timemark %R'
335 E_TIME_TEXT
="$(exec 2>&1; ulimit -d $MAX_MEM_USAGE; \
336 time $LTEXE $EXENAME)"
337 E_ABNORMAL_TERMINATION
=$?
338 E_TIME
="$(echo $E_TIME_TEXT | awk '{print $2}')"
339 # joining those two commands does not work due to quoting problems:
340 #E_TIME="$(exec 2>&1; time $EXENAME | awk '{print $2}')"
341 # this will work as a fallback on certain systems...?
342 #E_TIME=$(exec 2>&1; time $EXENAME | cut -d ' ' -f 2)
344 if [ "$E_ABNORMAL_TERMINATION" -ne 0 ]; then
347 # sometimes you want to save all core files for review:
348 #mv ./core $EXENAME.core
349 # sometimes the OS allows you to name core files yourself:
350 #mv ./*core $EXENAME.core
351 #mv ./core* $EXENAME.core
356 # sometimes you want to save all failing exe files for review:
357 if [ "$RESULT" = "+" ]; then
361 # the file did not compile/link.
362 printf "\n" >> $LOG_FILE
363 `cat compile.out >> $LOG_FILE`
371 # update the counters
372 if test "$RESULT" = "+" ; then
373 if test x
"$S_FLAG" = x
"$ST_FLAG"; then
374 static_pass
=`expr $static_pass + 1`
376 shared_pass
=`expr $shared_pass + 1`
379 if test x
"$S_FLAG" = x
"$ST_FLAG"; then
380 static_fail
=`expr $static_fail + 1`
382 shared_fail
=`expr $shared_fail + 1`
386 printf "%s\t" "$RESULT"
387 printf "%-2s %d\t%.3f\t%s\t%s\t%s\t%s %s\n" \
388 "$RESULT" $C_TIME $E_TIME $TEXT $DATA $SIZE $NAME "$S_FLAG" \
394 echo "Detailed test results in .${RESULTS_FILE/$BUILD_DIR}"
396 echo "------------------------------------------------------------------------"
397 printf "static\tshared\ttest\n"
398 echo "------------------------------------------------------------------------"
400 TEST_TIME_START
=$
($TIMER_COMMAND)
401 for NAME
in `cat $TESTS_FILE`
403 PRE_NAME
="$TEST_DIR/`basename $NAME`"
404 ST_NAME
="`echo $PRE_NAME | sed 's/cc$/st-exe/'`"
405 SH_NAME
="`echo $PRE_NAME | sed 's/cc$/sh-exe/'`"
407 if test @enable_static@
= yes; then
408 test_file
$NAME $ST_NAME "$ST_FLAG"
411 printf "static skipped\n" >> $RESULTS_FILE
413 if test @enable_shared@
= yes; then
414 test_file
$NAME $SH_NAME "$SH_FLAG"
417 printf "shared skipped\n" >> $RESULTS_FILE
419 printf "%s\n" "$NAME"
421 echo "" >> $RESULTS_FILE
423 TEST_TIME_END
=$
($TIMER_COMMAND)
429 # grep can count faster than we can...
430 total_failures
=`expr ${shared_fail} + ${static_fail}`
431 total_successes
=`expr ${shared_pass} + ${static_pass}`
432 resultstext
="pass/fail results: ${shared_pass}/${shared_fail} shared + ${static_pass}/${static_fail} static = ${total_successes}/${total_failures} total"
433 if [ $total_failures -eq 0 ]; then
434 resultstext
="${resultstext}, WIN WIN"
437 $resultstext" $RESULTS_FILE > ${RESULTS_FILE}.tmp
438 mv ${RESULTS_FILE}.tmp
$RESULTS_FILE
440 if [ $TEST_TIME_START -lt $TEST_TIME_END ]; then
441 TEST_TIME
=$
[ $TEST_TIME_END - $TEST_TIME_START ]
442 echo "testrun == $TEST_TIME seconds"
443 echo "testrun == $TEST_TIME seconds" >> $RESULTS_FILE