On 01/24/2011 05:33 PM, Benny Halevy wrote: > this is a problem with the version of nroff on newer distributions. My version of groff (1.21) is splitting the error into two lines, so I am using the following patch. Bryan --- a/general/runtests.wrk +++ a/general/runtests.wrk @@ -88,6 +88,12 @@ $TIME nroff < nroff.tbl > nroff.out 2>> nroff.time || cat nroff.time $TIME nroff < nroff.tbl > nroff.out 2>> nroff.time || cat nroff.time rm nroff.out nroff.tbl +# Filter excessive noise from GNU nroff. Should be harmless for other +# versions of nroff. +egrep -v '^warning:.*$' <nroff.time >nroff.new +mv -f nroff.new nroff.time +egrep -v '^ table wider.*$' <nroff.time >nroff.new +mv -f nroff.new nroff.time set -e ./stat nroff.time set +e -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html