regress-demangle: New file.
* testsuite/regress-demangle: New file.
* testsuite/demangle-expected: New file.
* Makefile.in (all, check, installcheck, info, install-info,
clean-info, dvi, install, etags, tags, mostlyclean, clean,
distclean, maintainer-clean, realclean): Depend on corresponding
`-subdir' target.
(all-subdir check-subdir installcheck-subdir info-subdir
install-info-subdir clean-info-subdir dvi-subdir
install-info-subdir etags-subdir mostlyclean-subdir clean-subdir
distclean-subdir maintainer-clean-subdir): New target.
* testsuite/Makefile.in: New file.
* configure: Rebuilt.
* configure.in: Create testsuite/Makefile.
From-SVN: r26205
1999-04-05 22:28:59 +08:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
# Run a regression test for the demangler.
|
|
|
|
# Usage: regress-demangle TEST-FILE
|
|
|
|
|
|
|
|
failures=0
|
|
|
|
count=0
|
|
|
|
sed -e '/^#/ d' "$1" | (
|
|
|
|
while read type; do
|
|
|
|
read mangled
|
|
|
|
read demangled
|
|
|
|
|
|
|
|
x="`echo $mangled | ./test-filter $type`"
|
|
|
|
count=`expr $count + 1`
|
|
|
|
if test "x$x" != "x$demangled"; then
|
|
|
|
failures=`expr $failures + 1`
|
|
|
|
echo "FAIL: $type $mangled"
|
2000-07-17 18:35:41 +08:00
|
|
|
echo " result: $x"
|
|
|
|
echo " expected: $demangled"
|
regress-demangle: New file.
* testsuite/regress-demangle: New file.
* testsuite/demangle-expected: New file.
* Makefile.in (all, check, installcheck, info, install-info,
clean-info, dvi, install, etags, tags, mostlyclean, clean,
distclean, maintainer-clean, realclean): Depend on corresponding
`-subdir' target.
(all-subdir check-subdir installcheck-subdir info-subdir
install-info-subdir clean-info-subdir dvi-subdir
install-info-subdir etags-subdir mostlyclean-subdir clean-subdir
distclean-subdir maintainer-clean-subdir): New target.
* testsuite/Makefile.in: New file.
* configure: Rebuilt.
* configure.in: Create testsuite/Makefile.
From-SVN: r26205
1999-04-05 22:28:59 +08:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if test $failures -eq 0; then
|
|
|
|
echo "All $count tests passed"
|
|
|
|
else
|
|
|
|
echo "$failures of $count tests failed"
|
|
|
|
fi
|
|
|
|
|
|
|
|
test $failures -eq 0
|
|
|
|
)
|