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

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

Issue 179793004: crash like chrome (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 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 | « src/platform-win32.cc ('k') | tools/run-tests.py » ('j') | 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
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", "webkit"]
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" : ["--nohard-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 "--noconcurrent-recompilation"], 61 "--noconcurrent-recompilation"],
62 "release" : ["--nobreak-on-abort", "--nodead-code-elimination", 62 "release" : ["--nohard-abort", "--nodead-code-elimination",
63 "--nofold-constants", "--noconcurrent-recompilation"]} 63 "--nofold-constants", "--noconcurrent-recompilation"]}
64 64
65 SUPPORTED_ARCHS = ["android_arm", 65 SUPPORTED_ARCHS = ["android_arm",
66 "android_ia32", 66 "android_ia32",
67 "arm", 67 "arm",
68 "ia32", 68 "ia32",
69 "mipsel", 69 "mipsel",
70 "nacl_ia32", 70 "nacl_ia32",
71 "nacl_x64", 71 "nacl_x64",
72 "x64"] 72 "x64"]
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 return exit_code 466 return exit_code
467 467
468 except KeyboardInterrupt: 468 except KeyboardInterrupt:
469 return 1 469 return 1
470 470
471 return exit_code 471 return exit_code
472 472
473 473
474 if __name__ == "__main__": 474 if __name__ == "__main__":
475 sys.exit(Main()) 475 sys.exit(Main())
OLDNEW
« no previous file with comments | « src/platform-win32.cc ('k') | tools/run-tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698