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

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

Issue 1805533002: S390: Initial test changes and files checkin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: S390: Initial test changes and files checkin Created 4 years, 9 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
« no previous file with comments | « test/unittests/unittests.gyp ('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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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())
OLDNEW
« no previous file with comments | « test/unittests/unittests.gyp ('k') | tools/run-tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698