aboutsummaryrefslogtreecommitdiff
path: root/binary_search_tool/test/gen_init_list.py
blob: bc5dd8fed665fc7a8dd58d3d89a5c861565113fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright 2020 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""Prints out index for every object file, starting from 0."""

from __future__ import print_function

import sys

from cros_utils import command_executer
from binary_search_tool.test import common


def Main():
  ce = command_executer.GetCommandExecuter()
  _, l, _ = ce.RunCommandWOutput(
      'cat {0} | wc -l'.format(common.OBJECTS_FILE), print_to_console=False)
  for i in range(0, int(l)):
    print(i)


if __name__ == '__main__':
  Main()
  sys.exit(0)