OLD | NEW |
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 Loading... |
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_turbofan": False, | |
398 "isolates": options.isolates, | 397 "isolates": options.isolates, |
399 "mode": mode, | 398 "mode": mode, |
400 "no_i18n": False, | 399 "no_i18n": False, |
401 "no_snap": False, | 400 "no_snap": False, |
402 "simulator": utils.UseSimulator(arch), | 401 "simulator": utils.UseSimulator(arch), |
403 "system": utils.GuessOS(), | 402 "system": utils.GuessOS(), |
404 "tsan": False, | 403 "tsan": False, |
405 "msan": False, | 404 "msan": False, |
406 "dcheck_always_on": options.dcheck_always_on, | 405 "dcheck_always_on": options.dcheck_always_on, |
407 "novfp3": False, | 406 "novfp3": False, |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 print(">>> Deopt fuzzing phase (%d test cases)" % num_tests) | 484 print(">>> Deopt fuzzing phase (%d test cases)" % num_tests) |
486 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]() | 485 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]() |
487 runner = execution.Runner(suites, progress_indicator, ctx) | 486 runner = execution.Runner(suites, progress_indicator, ctx) |
488 | 487 |
489 code = runner.Run(options.j) | 488 code = runner.Run(options.j) |
490 return exit_code or code | 489 return exit_code or code |
491 | 490 |
492 | 491 |
493 if __name__ == "__main__": | 492 if __name__ == "__main__": |
494 sys.exit(Main()) | 493 sys.exit(Main()) |
OLD | NEW |