Author: ablack
Date: Tue Apr 1 08:13:01 2008
New Revision: 643435
URL: http://svn.apache.org/viewvc?rev=643435&view=rev
Log:
2008-04-01 Andrew Black <[EMAIL PROTECTED]>
* build/bin/run_utils: Update result footer format to match format
expected by exec utility. Footer search logic changed in r643120.
Modified:
stdcxx/trunk/etc/config/run_locale_utils.sh
Modified: stdcxx/trunk/etc/config/run_locale_utils.sh
URL:
http://svn.apache.org/viewvc/stdcxx/trunk/etc/config/run_locale_utils.sh?rev=643435&r1=643434&r2=643435&view=diff
==============================================================================
--- stdcxx/trunk/etc/config/run_locale_utils.sh (original)
+++ stdcxx/trunk/etc/config/run_locale_utils.sh Tue Apr 1 08:13:01 2008
@@ -597,20 +597,21 @@
fi
pcnt=`expr 100 \* \( $assertions - $failedassertions \) / $assertions`
-output "# +-----------------------+--------+--------+--------+"
-output "# | DIAGNOSTIC | ACTIVE | TOTAL |INACTIVE|"
-output "# +-----------------------+--------+--------+--------+"
+output "# +-----------------------+----------+----------+----------+"
+output "# | DIAGNOSTIC | ACTIVE | TOTAL | INACTIVE |"
+output "# +-----------------------+----------+----------+----------+"
if test -z "$outfile"; then
- printf "# | (S7) ASSERTION | %6d | %6d | %5d%% |\n" \
+ printf "# | (S7) ASSERTION | %8d | %8d | %7d%% |\n" \
$failedassertions $assertions $pcnt
else
- printf "# | (S7) ASSERTION | %6d | %6d | %5d%% |\n" \
+ printf "# | (S7) ASSERTION | %8d | %8d | %7d%% |\n" \
$failedassertions $assertions $pcnt >> $outfile
fi
-output "# +-----------------------+--------+--------+--------+"
+output "# +-----------------------+----------+----------+----------+"
output
+output "## Warnings = 0"
output "## Assertions = "$assertions
output "## FailedAssertions = "$failedassertions
output