| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "--noconcurrent-recompilation"], | 64 "--noconcurrent-recompilation"], |
| 65 "release" : ["--nohard-abort", "--nodead-code-elimination", | 65 "release" : ["--nohard-abort", "--nodead-code-elimination", |
| 66 "--nofold-constants", "--noconcurrent-recompilation"]} | 66 "--nofold-constants", "--noconcurrent-recompilation"]} |
| 67 | 67 |
| 68 SUPPORTED_ARCHS = ["android_arm", | 68 SUPPORTED_ARCHS = ["android_arm", |
| 69 "android_ia32", | 69 "android_ia32", |
| 70 "arm", | 70 "arm", |
| 71 "ia32", | 71 "ia32", |
| 72 "ppc", | 72 "ppc", |
| 73 "ppc64", | 73 "ppc64", |
| 74 "s390", |
| 75 "s390x", |
| 74 "mipsel", | 76 "mipsel", |
| 75 "nacl_ia32", | 77 "nacl_ia32", |
| 76 "nacl_x64", | 78 "nacl_x64", |
| 77 "x64"] | 79 "x64"] |
| 78 # Double the timeout for these: | 80 # Double the timeout for these: |
| 79 SLOW_ARCHS = ["android_arm", | 81 SLOW_ARCHS = ["android_arm", |
| 80 "android_ia32", | 82 "android_ia32", |
| 81 "arm", | 83 "arm", |
| 82 "mipsel", | 84 "mipsel", |
| 83 "nacl_ia32", | 85 "nacl_ia32", |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 print(">>> Deopt fuzzing phase (%d test cases)" % num_tests) | 489 print(">>> Deopt fuzzing phase (%d test cases)" % num_tests) |
| 488 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]() | 490 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]() |
| 489 runner = execution.Runner(suites, progress_indicator, ctx) | 491 runner = execution.Runner(suites, progress_indicator, ctx) |
| 490 | 492 |
| 491 code = runner.Run(options.j) | 493 code = runner.Run(options.j) |
| 492 return exit_code or code | 494 return exit_code or code |
| 493 | 495 |
| 494 | 496 |
| 495 if __name__ == "__main__": | 497 if __name__ == "__main__": |
| 496 sys.exit(Main()) | 498 sys.exit(Main()) |
| OLD | NEW |