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

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

Issue 21173004: Version 3.20.11.1 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 7 years, 4 months 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 | Annotate | Revision Log
« no previous file with comments | « tools/gyp/v8.gyp ('k') | no next file » | 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 from testrunner.local import execution 43 from testrunner.local import execution
44 from testrunner.local import progress 44 from testrunner.local import progress
45 from testrunner.local import testsuite 45 from testrunner.local import testsuite
46 from testrunner.local import utils 46 from testrunner.local import utils
47 from testrunner.local import verbose 47 from testrunner.local import verbose
48 from testrunner.objects import context 48 from testrunner.objects import context
49 49
50 50
51 ARCH_GUESS = utils.DefaultArch() 51 ARCH_GUESS = utils.DefaultArch()
52 DEFAULT_TESTS = ["mjsunit", "webkit"] 52 DEFAULT_TESTS = ["mjsunit"]
53 TIMEOUT_DEFAULT = 60 53 TIMEOUT_DEFAULT = 60
54 TIMEOUT_SCALEFACTOR = {"debug" : 4, 54 TIMEOUT_SCALEFACTOR = {"debug" : 4,
55 "release" : 1 } 55 "release" : 1 }
56 56
57 MODE_FLAGS = { 57 MODE_FLAGS = {
58 "debug" : ["--nobreak-on-abort", "--nodead-code-elimination", 58 "debug" : ["--nobreak-on-abort", "--nodead-code-elimination",
59 "--nofold-constants", "--enable-slow-asserts", 59 "--nofold-constants", "--enable-slow-asserts",
60 "--debug-code", "--verify-heap", 60 "--debug-code", "--verify-heap",
61 "--noparallel-recompilation"], 61 "--noparallel-recompilation"],
62 "release" : ["--nobreak-on-abort", "--nodead-code-elimination", 62 "release" : ["--nobreak-on-abort", "--nodead-code-elimination",
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 return exit_code 458 return exit_code
459 459
460 except KeyboardInterrupt: 460 except KeyboardInterrupt:
461 return 1 461 return 1
462 462
463 return exit_code 463 return exit_code
464 464
465 465
466 if __name__ == "__main__": 466 if __name__ == "__main__":
467 sys.exit(Main()) 467 sys.exit(Main())
OLDNEW
« no previous file with comments | « tools/gyp/v8.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698