8 default_cmd
="sparse \$file"
9 tests_list
=`find . -name '*.c' | sed -e 's#^\./\(.*\)#\1#' | sort`
10 prog_name
=`basename $0`
12 if [ ! -x "$default_path/sparse-llvm" ]; then
13 disabled_cmds
="sparsec sparsei sparse-llvm"
17 # - some tests gave an unexpected result
21 # - tests that have not been converted to test-suite format
22 # - tests that are disabled
25 # - tests that failed but are known to fail
32 # defaults to not verbose
34 [ $V -eq 0 ] && quiet
=1 || quiet
=0
37 # get_tag_value(file) - get the 'check-<...>' tags & values
41 check_command
="$default_cmd"
47 check_output_contains
=0
48 check_output_excludes
=0
49 check_output_pattern
=0
51 lines
=$
(grep 'check-[a-z-]*' $1 | \
52 sed -e 's/^.*\(check-[a-z-]*:*\) *\(.*\)$/\1 \2/')
54 while read tag val
; do
55 #echo "-> tag: '$tag'"
56 #echo "-> val: '$val'"
58 check-name
:) check_name
="$val" ;;
59 check-command
:) check_command
="$val" ;;
60 check-exit-value
:) check_exit_value
="$val" ;;
61 check-timeout
:) [ -z "$val" ] && val
=1
62 check_timeout
="$val" ;;
63 check-known-to-fail
) check_known_to_fail
=1 ;;
64 check-error-ignore
) check_error_ignore
=1 ;;
65 check-output-ignore
) check_output_ignore
=1 ;;
66 check-output-contains
:) check_output_contains
=1 ;;
67 check-output-excludes
:) check_output_excludes
=1 ;;
68 check-output-pattern-
) check_output_pattern
=1 ;;
76 # helper for has_(each|none)_patterns()
83 grep "$patt:" "$ifile" | \
84 sed -e "s/^.*$patt: *\(.*\)$/\1/" | \
86 grep -s -q "$val" "$ofile"
87 if [ "$?" $cmp 0 ]; then
96 # has_each_patterns(ifile tag ofile) - does ofile contains some
97 # of the patterns given by ifile's tags?
99 # returns 0 if all present, 1 otherwise
102 has_patterns
"$1" "$2" "$3" -ne
106 # has_none_patterns(ifile tag ofile) - does ofile contains some
107 # of the patterns given by ifile's tags?
109 # returns 1 if any present, 0 otherwise
112 has_patterns
"$1" "$2" "$3" -eq
116 # nbr_patterns(ifile tag ofile) - does ofile contains the
117 # the patterns given by ifile's tags
118 # the right number of time?
124 grep "$patt-[0-9][0-9]*-times:" "$ifile" | \
125 sed -e "s/^.*$patt-\([0-9][0-9]*\)-times: *\(.*\)/\1 \2/" | \
126 while read nbr pat
; do
127 n
=$
(grep -s "$pat" "$ofile" |
wc -l)
128 if [ "$n" -ne "$nbr" ]; then
137 # verbose(string) - prints string if we are in verbose mode
140 [ "$V" -eq "1" ] && echo " $1"
145 # error(string[, die]) - prints an error and exits with value die if given
148 [ "$quiet" -ne 1 ] && echo "error: $1"
149 [ -n "$2" ] && exit $2
155 echo "$prog_name - a tiny automatic testing script"
156 echo "Usage: $prog_name [command] [command arguments]"
159 echo " none runs the whole test suite"
160 echo " single file runs the test in 'file'"
161 echo " format file [name [cmd]] helps writing a new test case using cmd"
163 echo " help prints usage"
167 # do_test(file) - tries to validate a test case
169 # it "parses" file, looking for check-* tags and tries to validate
170 # the test against an expected result
172 # - 0 if the test passed,
174 # - 2 if it is not a "test-suite" test.
175 # - 3 if the test is disabled.
183 # can this test be handled by test-suite ?
184 # (it has to have a check-name key in it)
185 if [ "$check_name" = "" ]; then
186 echo "warning: test '$file' unhandled"
187 unhandled_tests
=$
(($unhandled_tests + 1))
190 test_name
="$check_name"
192 # does the test provide a specific command ?
193 if [ "$check_command" = "" ]; then
194 check_command
="$defaut_command"
197 # check for disabled commands
198 set -- $check_command
200 for i
in $disabled_cmds; do
201 if [ "$i" = "$base_cmd" ] ; then
202 disabled_tests
=$
(($disabled_tests + 1))
203 echo " DISABLE $test_name ($file)"
208 cmd
=`eval echo $default_path/$check_command`
210 echo " TEST $test_name ($file)"
212 verbose
"Using command : $cmd"
214 # grab the expected exit value
215 expected_exit_value
=$check_exit_value
216 verbose
"Expecting exit value: $expected_exit_value"
218 # do we want a timeout?
219 if [ $check_timeout -ne 0 ]; then
220 cmd
="timeout -k 1s $check_timeout $cmd"
223 # grab the actual output & exit value
224 $cmd 1> $file.output.got
2> $file.error.got
227 must_fail
=$check_known_to_fail
229 [ $must_fail -eq 1 ] && [ $V -eq 0 ] && quiet
=1
230 known_ko_tests
=$
(($known_ko_tests + $must_fail))
232 for stream
in output error
; do
233 eval ignore
=\
$check_${stream}_ignore
234 [ $ignore -eq 1 ] && continue
236 # grab the expected output
237 sed -n "/check-$stream-start/,/check-$stream-end/p" $file \
238 |
grep -v check-
$stream > "$file".
$stream.expected
240 diff -u "$file".
$stream.expected
"$file".
$stream.got
> "$file".
$stream.
diff
241 if [ "$?" -ne "0" ]; then
242 error
"actual $stream text does not match expected $stream text."
243 error
"see $file.$stream.* for further investigation."
244 [ $quiet -ne 1 ] && cat "$file".
$stream.
diff
249 if [ "$actual_exit_value" -ne "$expected_exit_value" ]; then
250 error
"Actual exit value does not match the expected one."
251 error
"expected $expected_exit_value, got $actual_exit_value."
255 # verify the 'check-output-contains/excludes' tags
256 if [ $check_output_contains -eq 1 ]; then
257 has_each_patterns
"$file" 'check-output-contains' $file.output.got
258 if [ "$?" -ne "0" ]; then
259 error
"Actual output doesn't contain some of the expected patterns."
263 if [ $check_output_excludes -eq 1 ]; then
264 has_none_patterns
"$file" 'check-output-excludes' $file.output.got
265 if [ "$?" -ne "0" ]; then
266 error
"Actual output contains some patterns which are not expected."
270 if [ $check_output_pattern -eq 1 ]; then
271 # verify the 'check-output-pattern-X-times' tags
272 nbr_patterns
"$file" 'check-output-pattern' $file.output.got
273 if [ "$?" -ne "0" ]; then
274 error
"Actual output doesn't contain the pattern the expected number."
279 [ "$test_failed" -eq "$must_fail" ] || failed
=1
281 if [ "$must_fail" -eq "1" ]; then
282 if [ "$test_failed" -eq "1" ]; then
283 echo "info: test '$file' is known to fail"
285 echo "error: test '$file' is known to fail but succeed!"
290 if [ "$test_failed" -eq "1" ]; then
291 ko_tests
=$
(($ko_tests + 1))
293 ok_tests
=$
(($ok_tests + 1))
294 rm -f $file.
{error
,output
}.
{expected
,got
,diff}
301 for i
in $tests_list; do
305 # prints some numbers
306 tests_nr
=$
(($ok_tests + $ko_tests))
307 echo -n "Out of $tests_nr tests, $ok_tests passed, $ko_tests failed"
308 echo " ($known_ko_tests of them are known to fail)"
309 if [ "$unhandled_tests" -ne "0" ]; then
310 echo "$unhandled_tests tests could not be handled by $prog_name"
312 if [ "$disabled_tests" -ne "0" ]; then
313 echo "$disabled_tests tests were disabled"
318 # do_format(file[, name[, cmd]]) - helps a test writer to format test-suite tags
324 elif [ -z "$3" ]; then
332 cmd
=`eval echo $default_path/$fcmd`
333 $cmd 1> $file.output.got
2> $file.error.got
339 if [ "$fcmd" != "$default_cmd" ]; then
340 echo " * check-command: $fcmd"
342 if [ "$fexit_value" -ne "0" ]; then
343 echo " * check-exit-value: $fexit_value"
345 for stream
in output error
; do
346 if [ -s "$file.$stream.got" ]; then
348 echo " * check-$stream-start"
349 cat "$file.$stream.got"
350 echo " * check-$stream-end"
358 # arg_file(filename) - checks if filename exists
366 error
"Can't open file $1"
380 0) echo "$2 passed !";;
381 1) echo "$2 failed !";;
382 2) echo "$2 can't be handled by $prog_name";;
387 do_format
"$2" "$3" "$4"