sanitize-win-build-log.sed 554 B

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