Commit e57aae39 by Christophe Lyon Committed by Christophe Lyon

[contrib] compare_tests: Print number of tests

2018-07-12  Christophe Lyon  <christophe.lyon@linaro.org>

	* compare_tests: Print number of tests in each category.

From-SVN: r262600
parent bffc6270
2018-07-12 Christophe Lyon <christophe.lyon@linaro.org>
* compare_tests: Print number of tests in each category.
2018-06-19 Alexander Monakov <amonakov@ispras.ru> 2018-06-19 Alexander Monakov <amonakov@ispras.ru>
* vim-gcc-dev/README: New file. * vim-gcc-dev/README: New file.
......
...@@ -129,7 +129,8 @@ grep '^PASS' "$before_s" | sed 's/^[^:]*:[ ]//' | comm -12 $tmp1 - >$tmp2 ...@@ -129,7 +129,8 @@ grep '^PASS' "$before_s" | sed 's/^[^:]*:[ ]//' | comm -12 $tmp1 - >$tmp2
grep -s . $tmp2 >/dev/null grep -s . $tmp2 >/dev/null
if [ $? = 0 ]; then if [ $? = 0 ]; then
echo "Tests that now fail, but worked before:" num=`cat $tmp2 | wc -l`
echo "Tests that now fail, but worked before ($num tests):"
echo echo
cat $tmp2 cat $tmp2
echo echo
...@@ -141,7 +142,8 @@ grep '^FAIL' "$before_s" | sed 's/^[^:]*:[ ]//' | comm -12 $tmp1 - >$tmp2 ...@@ -141,7 +142,8 @@ grep '^FAIL' "$before_s" | sed 's/^[^:]*:[ ]//' | comm -12 $tmp1 - >$tmp2
grep -s . $tmp2 >/dev/null grep -s . $tmp2 >/dev/null
if [ $? = 0 ]; then if [ $? = 0 ]; then
echo "Tests that now work, but didn't before:" num=`cat $tmp2 | wc -l`
echo "Tests that now work, but didn't before ($num tests):"
echo echo
cat $tmp2 cat $tmp2
[ -n "$strict" ] && echo "Strict test fails" && exit_status=1 [ -n "$strict" ] && echo "Strict test fails" && exit_status=1
...@@ -153,7 +155,8 @@ grep '^[PF]A[SI][SL]' "$before_s" | sed 's/^[^:]*:[ ]//' | comm -23 $tmp1 - >$t ...@@ -153,7 +155,8 @@ grep '^[PF]A[SI][SL]' "$before_s" | sed 's/^[^:]*:[ ]//' | comm -23 $tmp1 - >$t
grep -s . $tmp2 >/dev/null grep -s . $tmp2 >/dev/null
if [ $? = 0 ]; then if [ $? = 0 ]; then
echo "New tests that FAIL:" num=`cat $tmp2 | wc -l`
echo "New tests that FAIL ($num tests):"
echo echo
cat $tmp2 cat $tmp2
echo echo
...@@ -165,7 +168,8 @@ grep '^[PF]A[SI][SL]' "$before_s" | sed 's/^[^:]*:[ ]//' | comm -23 $tmp1 - >$t ...@@ -165,7 +168,8 @@ grep '^[PF]A[SI][SL]' "$before_s" | sed 's/^[^:]*:[ ]//' | comm -23 $tmp1 - >$t
grep -s . $tmp2 >/dev/null grep -s . $tmp2 >/dev/null
if [ $? = 0 ]; then if [ $? = 0 ]; then
echo "New tests that PASS:" num=`cat $tmp2 | wc -l`
echo "New tests that PASS ($num tests):"
echo echo
cat $tmp2 cat $tmp2
[ -n "$strict" ] && echo "Strict test fails" && exit_status=1 [ -n "$strict" ] && echo "Strict test fails" && exit_status=1
...@@ -177,7 +181,8 @@ grep '^PASS' "$before_s" | sed 's/^[^:]*:[ ]//' | comm -13 $tmp1 - >$tmp2 ...@@ -177,7 +181,8 @@ grep '^PASS' "$before_s" | sed 's/^[^:]*:[ ]//' | comm -13 $tmp1 - >$tmp2
grep -s . $tmp2 >/dev/null grep -s . $tmp2 >/dev/null
if [ $? = 0 ]; then if [ $? = 0 ]; then
echo "Old tests that passed, that have disappeared: (Eeek!)" num=`cat $tmp2 | wc -l`
echo "Old tests that passed, that have disappeared ($num tests): (Eeek!)"
echo echo
cat $tmp2 cat $tmp2
[ -n "$strict" ] && echo "Strict test fails" && exit_status=1 [ -n "$strict" ] && echo "Strict test fails" && exit_status=1
...@@ -189,7 +194,8 @@ grep '^FAIL' "$before_s" | sed 's/^[^:]*:[ ]//' | comm -13 $tmp1 - >$tmp2 ...@@ -189,7 +194,8 @@ grep '^FAIL' "$before_s" | sed 's/^[^:]*:[ ]//' | comm -13 $tmp1 - >$tmp2
grep -s . $tmp2 >/dev/null grep -s . $tmp2 >/dev/null
if [ $? = 0 ]; then if [ $? = 0 ]; then
echo "Old tests that failed, that have disappeared: (Eeek!)" num=`cat $tmp2 | wc -l`
echo "Old tests that failed, that have disappeared ($num tests): (Eeek!)"
echo echo
cat $tmp2 cat $tmp2
[ -n "$strict" ] && echo "Strict test fails" && exit_status=1 [ -n "$strict" ] && echo "Strict test fails" && exit_status=1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment