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

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

Issue 1520163003: [test] Skip some tests on the coverage bot. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 False, # No predictable mode. 383 False, # No predictable mode.
384 False, # No no_harness mode. 384 False, # No no_harness mode.
385 False) # Don't use perf data. 385 False) # Don't use perf data.
386 386
387 # Find available test suites and read test cases from them. 387 # Find available test suites and read test cases from them.
388 variables = { 388 variables = {
389 "arch": arch, 389 "arch": arch,
390 "asan": options.asan, 390 "asan": options.asan,
391 "deopt_fuzzer": True, 391 "deopt_fuzzer": True,
392 "gc_stress": False, 392 "gc_stress": False,
393 "gcov_coverage": False,
393 "ignition": False, 394 "ignition": False,
394 "isolates": options.isolates, 395 "isolates": options.isolates,
395 "mode": mode, 396 "mode": mode,
396 "no_i18n": False, 397 "no_i18n": False,
397 "no_snap": False, 398 "no_snap": False,
398 "simulator": utils.UseSimulator(arch), 399 "simulator": utils.UseSimulator(arch),
399 "system": utils.GuessOS(), 400 "system": utils.GuessOS(),
400 "tsan": False, 401 "tsan": False,
401 "msan": False, 402 "msan": False,
402 "dcheck_always_on": options.dcheck_always_on, 403 "dcheck_always_on": options.dcheck_always_on,
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 print(">>> Deopt fuzzing phase (%d test cases)" % num_tests) 482 print(">>> Deopt fuzzing phase (%d test cases)" % num_tests)
482 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]() 483 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]()
483 runner = execution.Runner(suites, progress_indicator, ctx) 484 runner = execution.Runner(suites, progress_indicator, ctx)
484 485
485 code = runner.Run(options.j) 486 code = runner.Run(options.j)
486 return exit_code or code 487 return exit_code or code
487 488
488 489
489 if __name__ == "__main__": 490 if __name__ == "__main__":
490 sys.exit(Main()) 491 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