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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 "--debug-code", "--verify-heap"], | 68 "--debug-code", "--verify-heap"], |
69 "release" : ["--nohard-abort", "--nodead-code-elimination", | 69 "release" : ["--nohard-abort", "--nodead-code-elimination", |
70 "--nofold-constants"]} | 70 "--nofold-constants"]} |
71 | 71 |
72 GC_STRESS_FLAGS = ["--gc-interval=500", "--stress-compaction", | 72 GC_STRESS_FLAGS = ["--gc-interval=500", "--stress-compaction", |
73 "--concurrent-recompilation-queue-length=64", | 73 "--concurrent-recompilation-queue-length=64", |
74 "--concurrent-recompilation-delay=500", | 74 "--concurrent-recompilation-delay=500", |
75 "--concurrent-recompilation"] | 75 "--concurrent-recompilation"] |
76 | 76 |
77 SUPPORTED_ARCHS = ["android_arm", | 77 SUPPORTED_ARCHS = ["android_arm", |
| 78 "android_arm64", |
78 "android_ia32", | 79 "android_ia32", |
79 "arm", | 80 "arm", |
80 "ia32", | 81 "ia32", |
81 "mipsel", | 82 "mipsel", |
82 "nacl_ia32", | 83 "nacl_ia32", |
83 "nacl_x64", | 84 "nacl_x64", |
84 "x64", | 85 "x64", |
85 "arm64"] | 86 "arm64"] |
86 # Double the timeout for these: | 87 # Double the timeout for these: |
87 SLOW_ARCHS = ["android_arm", | 88 SLOW_ARCHS = ["android_arm", |
| 89 "android_arm64", |
88 "android_ia32", | 90 "android_ia32", |
89 "arm", | 91 "arm", |
90 "mipsel", | 92 "mipsel", |
91 "nacl_ia32", | 93 "nacl_ia32", |
92 "nacl_x64", | 94 "nacl_x64", |
93 "arm64"] | 95 "arm64"] |
94 | 96 |
95 | 97 |
96 def BuildOptions(): | 98 def BuildOptions(): |
97 result = optparse.OptionParser() | 99 result = optparse.OptionParser() |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 except KeyboardInterrupt: | 485 except KeyboardInterrupt: |
484 raise | 486 raise |
485 | 487 |
486 if options.time: | 488 if options.time: |
487 verbose.PrintTestDurations(suites, overall_duration) | 489 verbose.PrintTestDurations(suites, overall_duration) |
488 return exit_code | 490 return exit_code |
489 | 491 |
490 | 492 |
491 if __name__ == "__main__": | 493 if __name__ == "__main__": |
492 sys.exit(Main()) | 494 sys.exit(Main()) |
OLD | NEW |