Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: tools/testrunner/local/progress.py

Issue 1313353006: [test] Return target name on failures. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698