Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 368 "stdout": test.output.stdout, | 368 "stdout": test.output.stdout, |
| 369 "stderr": test.output.stderr, | 369 "stderr": test.output.stderr, |
| 370 "exit_code": test.output.exit_code, | 370 "exit_code": test.output.exit_code, |
| 371 "result": test.suite.GetOutcome(test), | 371 "result": test.suite.GetOutcome(test), |
| 372 "expected": list(test.outcomes or ["PASS"]), | 372 "expected": list(test.outcomes or ["PASS"]), |
| 373 "duration": test.duration, | 373 "duration": test.duration, |
| 374 | 374 |
| 375 # TODO(machenbach): This stores only the global random seed from the | 375 # TODO(machenbach): This stores only the global random seed from the |
| 376 # context and not possible overrides when using random-seed stress. | 376 # context and not possible overrides when using random-seed stress. |
| 377 "random_seed": self.random_seed, | 377 "random_seed": self.random_seed, |
| 378 "target_name": test.suite.shell(), | |
|
Michael Achenbach
2015/09/07 07:39:10
shell name == target name is an approximation - bu
| |
| 378 "variant": test.variant, | 379 "variant": test.variant, |
| 379 }) | 380 }) |
| 380 | 381 |
| 381 | 382 |
| 382 PROGRESS_INDICATORS = { | 383 PROGRESS_INDICATORS = { |
| 383 'verbose': VerboseProgressIndicator, | 384 'verbose': VerboseProgressIndicator, |
| 384 'dots': DotsProgressIndicator, | 385 'dots': DotsProgressIndicator, |
| 385 'color': ColorProgressIndicator, | 386 'color': ColorProgressIndicator, |
| 386 'mono': MonochromeProgressIndicator | 387 'mono': MonochromeProgressIndicator |
| 387 } | 388 } |
| OLD | NEW |