Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ef21d145 authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh
Browse files

Get Android TOP from build.log file.

find_android_root works only when warn.py is found
so it works for build bot, but not when warn.py is
run against a stand alone build.log file.
Now get the TOP directory path from build.log
if it is found.

Bug: 37725427
Test: warn.py --gencsv build.log
Change-Id: I7b776c2e71a8d8d769f0600b08abe37acbd6ce7c
parent f9937b5c
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -2385,7 +2385,8 @@ def normalize_warning_line(line):


def parse_input_file(infile):
  """Parse input file, match warning lines."""
  """Parse input file, collect parameters and warning lines."""
  global android_root
  global platform_version
  global target_product
  global target_variant
@@ -2412,6 +2413,9 @@ def parse_input_file(infile):
      m = re.search('(?<=^TARGET_BUILD_VARIANT=).*', line)
      if m is not None:
        target_variant = m.group(0)
      m = re.search('.* TOP=([^ ]*) .*', line)
      if m is not None:
        android_root = m.group(1)
  return warning_lines