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

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

Issue 1922623003: [Interpreter] Prepare switching to new ignition testing variant. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 False) # Coverage not supported. 392 False) # Coverage not supported.
393 393
394 # Find available test suites and read test cases from them. 394 # Find available test suites and read test cases from them.
395 variables = { 395 variables = {
396 "arch": arch, 396 "arch": arch,
397 "asan": options.asan, 397 "asan": options.asan,
398 "deopt_fuzzer": True, 398 "deopt_fuzzer": True,
399 "gc_stress": False, 399 "gc_stress": False,
400 "gcov_coverage": False, 400 "gcov_coverage": False,
401 "ignition": False, 401 "ignition": False,
402 "ignition_turbofan": False,
402 "isolates": options.isolates, 403 "isolates": options.isolates,
403 "mode": mode, 404 "mode": mode,
404 "no_i18n": False, 405 "no_i18n": False,
405 "no_snap": False, 406 "no_snap": False,
406 "simulator": utils.UseSimulator(arch), 407 "simulator": utils.UseSimulator(arch),
407 "system": utils.GuessOS(), 408 "system": utils.GuessOS(),
408 "tsan": False, 409 "tsan": False,
409 "msan": False, 410 "msan": False,
410 "dcheck_always_on": options.dcheck_always_on, 411 "dcheck_always_on": options.dcheck_always_on,
411 "novfp3": False, 412 "novfp3": False,
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 print(">>> Deopt fuzzing phase (%d test cases)" % num_tests) 490 print(">>> Deopt fuzzing phase (%d test cases)" % num_tests)
490 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]() 491 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]()
491 runner = execution.Runner(suites, progress_indicator, ctx) 492 runner = execution.Runner(suites, progress_indicator, ctx)
492 493
493 code = runner.Run(options.j) 494 code = runner.Run(options.j)
494 return exit_code or code 495 return exit_code or code
495 496
496 497
497 if __name__ == "__main__": 498 if __name__ == "__main__":
498 sys.exit(Main()) 499 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