From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (schwarze@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id s37IQA5n003442 for ; Mon, 7 Apr 2014 14:26:10 -0400 (EDT) Received: (from schwarze@localhost) by krisdoz.my.domain (8.14.5/8.14.3/Submit) id s37IQAxq016762; Mon, 7 Apr 2014 14:26:10 -0400 (EDT) Date: Mon, 7 Apr 2014 14:26:10 -0400 (EDT) Message-Id: <201404071826.s37IQAxq016762@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: Make it clear which errors come from which tool. X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Make it clear which errors come from which tool. joint work with sthen@ Modified Files: -------------- mdocml: gmdiff Revision Data ------------- Index: gmdiff =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/gmdiff,v retrieving revision 1.1 retrieving revision 1.2 diff -Lgmdiff -Lgmdiff -u -p -r1.1 -r1.2 --- gmdiff +++ gmdiff @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2013 Ingo Schwarze +# Copyright (c) 2013, 2014 Ingo Schwarze # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above @@ -27,8 +27,11 @@ while [ -n "$1" ]; do file=$1 shift echo " ========== $file ========== " - tbl $file | groff -mandoc -Tascii -P -c 2>&1 > /tmp/groff.out - mandoc -Ios='OpenBSD ports' -Werror $file 2>&1 > /tmp/mandoc.out + tbl $file | groff -mandoc -Tascii -P -c 2> /tmp/groff.err > /tmp/groff.out + mandoc -Ios='OpenBSD ports' -Werror $file 2> /tmp/mandoc.err > /tmp/mandoc.out + for i in groff mandoc; do + [[ -s /tmp/$i.err ]] && echo "$i errors:" && cat /tmp/$i.err + done diff -au /tmp/groff.out /tmp/mandoc.out 2>&1 done -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv