Chromium Code Reviews| Index: ios/build/bots/scripts/run.py |
| diff --git a/ios/build/bots/scripts/run.py b/ios/build/bots/scripts/run.py |
| index 01ac2e0a072887e023734fe76519cf1f034d257e..25c1d4c488db463108126ec4bdc6b500d6503dfa 100755 |
| --- a/ios/build/bots/scripts/run.py |
| +++ b/ios/build/bots/scripts/run.py |
| @@ -71,6 +71,10 @@ def main(args, test_args): |
| with open(os.path.join(args.out_dir, 'summary.json'), 'w') as f: |
| json.dump(summary, f) |
| + if tr: |
| + with open(os.path.join(args.out_dir, 'full_results.json'), 'w') as f: |
| + json.dump(tr.test_results, f) |
| + |
|
lpromero
2017/01/10 14:34:04
Maybe remove this new line, and add one before if
rohitrao (ping after 24h)
2017/01/10 17:39:31
Done.
|
| if __name__ == '__main__': |