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

Side by Side Diff: tools/testrunner/local/testsuite.py

Issue 1469383004: Run all message tests with a variant that forces preparsing (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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/message/testcfg.py ('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 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 26 matching lines...) Expand all
37 # Use this to run several variants of the tests. 37 # Use this to run several variants of the tests.
38 ALL_VARIANT_FLAGS = { 38 ALL_VARIANT_FLAGS = {
39 "default": [[]], 39 "default": [[]],
40 "stress": [["--stress-opt", "--always-opt"]], 40 "stress": [["--stress-opt", "--always-opt"]],
41 "turbofan": [["--turbo"]], 41 "turbofan": [["--turbo"]],
42 "turbofan_opt": [["--turbo", "--always-opt"]], 42 "turbofan_opt": [["--turbo", "--always-opt"]],
43 "nocrankshaft": [["--nocrankshaft"]], 43 "nocrankshaft": [["--nocrankshaft"]],
44 "ignition": [["--ignition", "--ignition-filter=*", 44 "ignition": [["--ignition", "--ignition-filter=*",
45 "--ignition-fake-try-catch", 45 "--ignition-fake-try-catch",
46 "--ignition-fallback-on-eval-and-catch"]], 46 "--ignition-fallback-on-eval-and-catch"]],
47 "preparser": [["--min-preparse-length=0"]],
47 } 48 }
48 49
49 # FAST_VARIANTS implies no --always-opt. 50 # FAST_VARIANTS implies no --always-opt.
50 FAST_VARIANT_FLAGS = { 51 FAST_VARIANT_FLAGS = {
51 "default": [[]], 52 "default": [[]],
52 "stress": [["--stress-opt"]], 53 "stress": [["--stress-opt"]],
53 "turbofan": [["--turbo"]], 54 "turbofan": [["--turbo"]],
54 "nocrankshaft": [["--nocrankshaft"]], 55 "nocrankshaft": [["--nocrankshaft"]],
55 "ignition": [["--ignition", "--ignition-filter=*", 56 "ignition": [["--ignition", "--ignition-filter=*",
56 "--ignition-fake-try-catch", 57 "--ignition-fake-try-catch",
57 "--ignition-fallback-on-eval-and-catch"]], 58 "--ignition-fallback-on-eval-and-catch"]],
59 "preparser": [["--min-preparse-length=0"]],
58 } 60 }
59 61
60 ALL_VARIANTS = set(["default", "stress", "turbofan", "turbofan_opt", 62 ALL_VARIANTS = set(["default", "stress", "turbofan", "turbofan_opt",
61 "nocrankshaft", "ignition"]) 63 "nocrankshaft", "ignition", "preparser"])
62 FAST_VARIANTS = set(["default", "turbofan"]) 64 FAST_VARIANTS = set(["default", "turbofan"])
63 STANDARD_VARIANT = set(["default"]) 65 STANDARD_VARIANT = set(["default"])
64 66
65 67
66 class VariantGenerator(object): 68 class VariantGenerator(object):
67 def __init__(self, suite, variants): 69 def __init__(self, suite, variants):
68 self.suite = suite 70 self.suite = suite
69 self.all_variants = ALL_VARIANTS & variants 71 self.all_variants = ALL_VARIANTS & variants
70 self.fast_variants = FAST_VARIANTS & variants 72 self.fast_variants = FAST_VARIANTS & variants
71 self.standard_variant = STANDARD_VARIANT & variants 73 self.standard_variant = STANDARD_VARIANT & variants
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 return (testcase.flags + ["--gtest_filter=" + testcase.path] + 334 return (testcase.flags + ["--gtest_filter=" + testcase.path] +
333 ["--gtest_random_seed=%s" % context.random_seed] + 335 ["--gtest_random_seed=%s" % context.random_seed] +
334 ["--gtest_print_time=0"] + 336 ["--gtest_print_time=0"] +
335 context.mode_flags) 337 context.mode_flags)
336 338
337 def _VariantGeneratorFactory(self): 339 def _VariantGeneratorFactory(self):
338 return StandardVariantGenerator 340 return StandardVariantGenerator
339 341
340 def shell(self): 342 def shell(self):
341 return self.name 343 return self.name
OLDNEW
« no previous file with comments | « test/message/testcfg.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698