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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 TIMEOUT_SCALEFACTOR = {"debug" : 4, | 55 TIMEOUT_SCALEFACTOR = {"debug" : 4, |
56 "release" : 1 } | 56 "release" : 1 } |
57 | 57 |
58 # Use this to run several variants of the tests. | 58 # Use this to run several variants of the tests. |
59 VARIANT_FLAGS = { | 59 VARIANT_FLAGS = { |
60 "default": [], | 60 "default": [], |
61 "stress": ["--stress-opt", "--always-opt"], | 61 "stress": ["--stress-opt", "--always-opt"], |
62 "turbofan": ["--turbo-filter=*", "--always-opt"], | 62 "turbofan": ["--turbo-filter=*", "--always-opt"], |
63 "nocrankshaft": ["--nocrankshaft"]} | 63 "nocrankshaft": ["--nocrankshaft"]} |
64 | 64 |
65 VARIANTS = ["default", "stress", "nocrankshaft"] | 65 VARIANTS = ["default", "stress", "turbofan", "nocrankshaft"] |
66 | 66 |
67 MODE_FLAGS = { | 67 MODE_FLAGS = { |
68 "debug" : ["--nohard-abort", "--nodead-code-elimination", | 68 "debug" : ["--nohard-abort", "--nodead-code-elimination", |
69 "--nofold-constants", "--enable-slow-asserts", | 69 "--nofold-constants", "--enable-slow-asserts", |
70 "--debug-code", "--verify-heap"], | 70 "--debug-code", "--verify-heap"], |
71 "release" : ["--nohard-abort", "--nodead-code-elimination", | 71 "release" : ["--nohard-abort", "--nodead-code-elimination", |
72 "--nofold-constants"]} | 72 "--nofold-constants"]} |
73 | 73 |
74 GC_STRESS_FLAGS = ["--gc-interval=500", "--stress-compaction", | 74 GC_STRESS_FLAGS = ["--gc-interval=500", "--stress-compaction", |
75 "--concurrent-recompilation-queue-length=64", | 75 "--concurrent-recompilation-queue-length=64", |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 exit_code = runner.Run(options.j) | 540 exit_code = runner.Run(options.j) |
541 overall_duration = time.time() - start_time | 541 overall_duration = time.time() - start_time |
542 | 542 |
543 if options.time: | 543 if options.time: |
544 verbose.PrintTestDurations(suites, overall_duration) | 544 verbose.PrintTestDurations(suites, overall_duration) |
545 return exit_code | 545 return exit_code |
546 | 546 |
547 | 547 |
548 if __name__ == "__main__": | 548 if __name__ == "__main__": |
549 sys.exit(Main()) | 549 sys.exit(Main()) |
OLD | NEW |