aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2017-03-16 15:30:21 +0000
committerPeter Maydell <peter.maydell@linaro.org>2017-03-16 15:30:21 +0000
commit7c785a0f4d2ebbc487188acefcac66368f8f0900 (patch)
tree80ba105ed8a2c0046e4417db9e6c0d91e7bbf08e
parent385ea6c811acd270f0f3c30ad3562b732411aef9 (diff)
greplogs: Filter out OSX texinfo warning
OSX has an ancient version of texinfo which always complains about not understanding the UTF-8 encoding we request. Filter this out, because it's not interesting to us. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rwxr-xr-xgreplogs2
1 files changed, 2 insertions, 0 deletions
diff --git a/greplogs b/greplogs
index c11453d..fc13076 100755
--- a/greplogs
+++ b/greplogs
@@ -45,7 +45,9 @@ while read f; do
# now we're using a newer clang build]
# (3) a complaint about null_auth being an overridden common between
# libnfs and libc when statically linking
+ # (4) OSX's ancient texinfo doesn't know about UTF-8
egrep -i '(error:|warning:|OK DONE|assert)' < "$f" | \
+ grep -v 'warning: unrecognized encoding name `UTF-8' | \
grep -v 'statically linked applications' | \
grep -v 'runtime error:.*left shift.*cannot be represented' | \
grep -v 'runtime error:.*left shift of negative value' | \