| Index: testing/scripts/host_info.py
|
| diff --git a/testing/scripts/host_info.py b/testing/scripts/host_info.py
|
| index c4948fc1d7fa7045d3d13387893b864e61056422..b7da5ab2292fe8641c671d971aad543055cd7e7a 100755
|
| --- a/testing/scripts/host_info.py
|
| +++ b/testing/scripts/host_info.py
|
| @@ -61,19 +61,16 @@
|
| rc = common.run_command([
|
| sys.executable,
|
| os.path.join(args.paths['checkout'],
|
| - 'third_party',
|
| - 'catapult',
|
| - 'devil',
|
| - 'devil',
|
| + 'build',
|
| 'android',
|
| - 'tools',
|
| - 'device_status.py'),
|
| + 'buildbot',
|
| + 'bb_device_status_check.py'),
|
| '--json-output', tempfile_path,
|
| '--blacklist-file', os.path.join(
|
| args.paths['checkout'], 'out', 'bad_devices.json')])
|
|
|
| if rc:
|
| - failures.append('device_status')
|
| + failures.append('bb_device_status_check')
|
| return {}
|
|
|
| with open(tempfile_path, 'r') as src:
|
| @@ -82,8 +79,7 @@
|
| results = {}
|
| results['devices'] = sorted(v['serial'] for v in device_info)
|
|
|
| - details = [v['ro.build.fingerprint']
|
| - for v in device_info if not v['blacklisted']]
|
| + details = [v['build_detail'] for v in device_info if not v['blacklisted']]
|
|
|
| def unique_build_details(index):
|
| return sorted(list(set([v.split(':')[index] for v in details])))
|
|
|