From 3592640f67d7bc94dd9355ba1a1cd5de84cdf567 Mon Sep 17 00:00:00 2001 From: grubert Date: Mon, 23 Mar 2020 13:56:19 +0000 Subject: [PATCH] add list of failing pages git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@8503 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- sandbox/manpage-writer/lexgrog-test.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sandbox/manpage-writer/lexgrog-test.sh b/sandbox/manpage-writer/lexgrog-test.sh index ca4fe6df5..7c5bd7721 100755 --- a/sandbox/manpage-writer/lexgrog-test.sh +++ b/sandbox/manpage-writer/lexgrog-test.sh @@ -6,15 +6,18 @@ DIR=output CNT=0 ERR=0 +FAILS="" for F in $DIR/*.man ; do CNT=$(( CNT + 1 )) lexgrog $F if test $? -ne 0 ; then ERR=$(( ERR + 1 )) + FAILS="$FAILS $(basename $F)" fi done if test $ERR -eq 0 ; then echo "OK $CNT tests passed" else echo "ERROR $ERR of $CNT tests failed" + echo "-- $FAILS" fi -- 2.11.4.GIT