3 # Run a regression test for the demangler.
4 # Usage: regress-demangle TEST-FILE
8 sed -e '/^#/ d' "$1" |
(
13 x
="`echo $mangled | ./test-filter $type`"
14 count
=`expr $count + 1`
15 if test "x$x" != "x$demangled"; then
16 failures
=`expr $failures + 1`
17 echo "FAIL: $type $mangled"
21 if test $failures -eq 0; then
22 echo "All $count tests passed"
24 echo "$failures of $count tests failed"