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

Side by Side Diff: tools/run-tests.py

Issue 252143002: Refactor mjsunit/fuzz-natives-* into a separate test suite. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comments Created 6 years, 7 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 | « test/mjsunit/mjsunit.status ('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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
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.network import network_execution 48 from testrunner.network import network_execution
49 from testrunner.objects import context 49 from testrunner.objects import context
50 50
51 51
52 ARCH_GUESS = utils.DefaultArch() 52 ARCH_GUESS = utils.DefaultArch()
53 DEFAULT_TESTS = ["mjsunit", "cctest", "message", "preparser"] 53 DEFAULT_TESTS = ["mjsunit", "fuzz-natives", "cctest", "message", "preparser"]
54 TIMEOUT_DEFAULT = 60 54 TIMEOUT_DEFAULT = 60
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 "nocrankshaft": ["--nocrankshaft"]} 62 "nocrankshaft": ["--nocrankshaft"]}
63 63
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 except KeyboardInterrupt: 498 except KeyboardInterrupt:
499 raise 499 raise
500 500
501 if options.time: 501 if options.time:
502 verbose.PrintTestDurations(suites, overall_duration) 502 verbose.PrintTestDurations(suites, overall_duration)
503 return exit_code 503 return exit_code
504 504
505 505
506 if __name__ == "__main__": 506 if __name__ == "__main__":
507 sys.exit(Main()) 507 sys.exit(Main())
OLDNEW
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698