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

Side by Side Diff: tools/run-deopt-fuzzer.py

Issue 2197123002: [test] Remove deprecated --ignition test-runner flag (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove more obsolete status Created 4 years, 4 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 | « test/webkit/webkit.status ('k') | tools/run-tests.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # 2 #
3 # Copyright 2012 the V8 project authors. All rights reserved. 3 # Copyright 2012 the V8 project authors. All rights reserved.
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 False, # Don't use perf data. 387 False, # Don't use perf data.
388 False) # Coverage not supported. 388 False) # Coverage not supported.
389 389
390 # Find available test suites and read test cases from them. 390 # Find available test suites and read test cases from them.
391 variables = { 391 variables = {
392 "arch": arch, 392 "arch": arch,
393 "asan": options.asan, 393 "asan": options.asan,
394 "deopt_fuzzer": True, 394 "deopt_fuzzer": True,
395 "gc_stress": False, 395 "gc_stress": False,
396 "gcov_coverage": False, 396 "gcov_coverage": False,
397 "ignition": False,
398 "ignition_turbofan": False, 397 "ignition_turbofan": False,
399 "isolates": options.isolates, 398 "isolates": options.isolates,
400 "mode": mode, 399 "mode": mode,
401 "no_i18n": False, 400 "no_i18n": False,
402 "no_snap": False, 401 "no_snap": False,
403 "simulator": utils.UseSimulator(arch), 402 "simulator": utils.UseSimulator(arch),
404 "system": utils.GuessOS(), 403 "system": utils.GuessOS(),
405 "tsan": False, 404 "tsan": False,
406 "msan": False, 405 "msan": False,
407 "dcheck_always_on": options.dcheck_always_on, 406 "dcheck_always_on": options.dcheck_always_on,
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 print(">>> Deopt fuzzing phase (%d test cases)" % num_tests) 485 print(">>> Deopt fuzzing phase (%d test cases)" % num_tests)
487 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]() 486 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]()
488 runner = execution.Runner(suites, progress_indicator, ctx) 487 runner = execution.Runner(suites, progress_indicator, ctx)
489 488
490 code = runner.Run(options.j) 489 code = runner.Run(options.j)
491 return exit_code or code 490 return exit_code or code
492 491
493 492
494 if __name__ == "__main__": 493 if __name__ == "__main__":
495 sys.exit(Main()) 494 sys.exit(Main())
OLDNEW
« no previous file with comments | « test/webkit/webkit.status ('k') | tools/run-tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698