michael@0: #!/bin/echo Use sanitize-win-build-log.sh or sed -f michael@0: michael@0: # Copyright (c) 2012 The Chromium Authors. All rights reserved. michael@0: # Use of this source code is governed by a BSD-style license that can be michael@0: # found in the LICENSE file. michael@0: michael@0: # Use this sed script to reduce a Windows build log into something michael@0: # machine-parsable. michael@0: michael@0: # Drop uninformative lines. michael@0: /The operation completed successfully./d michael@0: michael@0: # Drop parallelization indicators on lines. michael@0: s/^[0-9]\+>// michael@0: michael@0: # Shorten bindings generation lines michael@0: s/^.*"perl".*generate-bindings.pl".*\("[^"]\+\.idl"\).*$/ generate-bindings \1/