| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright 2015 Google Inc. | 2 # Copyright 2015 Google Inc. |
| 3 # | 3 # |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 # | 6 # |
| 7 | 7 |
| 8 #!/usr/bin/env python | 8 #!/usr/bin/env python |
| 9 | 9 |
| 10 usage = ''' | 10 usage = ''' |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 caller = inspect.stack()[1] # Up one level to our caller. | 24 caller = inspect.stack()[1] # Up one level to our caller. |
| 25 return inspect.getframeinfo(caller[0]).lineno | 25 return inspect.getframeinfo(caller[0]).lineno |
| 26 | 26 |
| 27 | 27 |
| 28 cov_start = lineno()+1 # We care about coverage starting just past this def. | 28 cov_start = lineno()+1 # We care about coverage starting just past this def. |
| 29 def get_args(bot): | 29 def get_args(bot): |
| 30 args = [] | 30 args = [] |
| 31 | 31 |
| 32 if 'GPU' in bot: | 32 if 'GPU' in bot: |
| 33 args.append('--images') | 33 args.append('--images') |
| 34 args.extend(['--gpuStatsDump', 'true']) |
| 34 | 35 |
| 35 if 'Appurify' not in bot: | 36 if 'Appurify' not in bot: |
| 36 args.extend(['--scales', '1.0', '1.1']) | 37 args.extend(['--scales', '1.0', '1.1']) |
| 37 | 38 |
| 38 if 'iOS' in bot: | 39 if 'iOS' in bot: |
| 39 args.extend(['--skps', 'ignore_skps']) | 40 args.extend(['--skps', 'ignore_skps']) |
| 40 | 41 |
| 41 if 'Appurify' not in bot: | 42 if 'Appurify' not in bot: |
| 42 config = ['565', '8888', 'gpu', 'nonrendering', 'angle', 'hwui'] | 43 config = ['565', '8888', 'gpu', 'nonrendering', 'angle', 'hwui'] |
| 43 # The S4 crashes and the NP produces a long error stream when we run with | 44 # The S4 crashes and the NP produces a long error stream when we run with |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 if len(sys.argv) == 2 and sys.argv[1] == 'test': | 156 if len(sys.argv) == 2 and sys.argv[1] == 'test': |
| 156 self_test() | 157 self_test() |
| 157 sys.exit(0) | 158 sys.exit(0) |
| 158 | 159 |
| 159 if len(sys.argv) != 3: | 160 if len(sys.argv) != 3: |
| 160 print usage | 161 print usage |
| 161 sys.exit(1) | 162 sys.exit(1) |
| 162 | 163 |
| 163 with open(sys.argv[1], 'w') as out: | 164 with open(sys.argv[1], 'w') as out: |
| 164 json.dump(get_args(sys.argv[2]), out) | 165 json.dump(get_args(sys.argv[2]), out) |
| OLD | NEW |