sanitize-win-build-log.sed 491 B

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