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

Side by Side Diff: test/preparser/testcfg.py

Issue 1782173005: [testing] Move the last JS tests out of "preparser". (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-test-preparser-2
Patch Set: Addressed comments. 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/preparser/symbols-only.js ('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 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 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
11 # with the distribution. 11 # with the distribution.
12 # * Neither the name of Google Inc. nor the names of its 12 # * Neither the name of Google Inc. nor the names of its
13 # contributors may be used to endorse or promote products derived 13 # contributors may be used to endorse or promote products derived
14 # from this software without specific prior written permission. 14 # from this software without specific prior written permission.
15 # 15 #
16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 28
29 import os 29 import os
30 import re
31 30
32 from testrunner.local import testsuite 31 from testrunner.local import testsuite
33 from testrunner.local import utils
34 from testrunner.objects import testcase 32 from testrunner.objects import testcase
35 33
36 34
37 FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)")
38 INVALID_FLAGS = ["--enable-slow-asserts"]
39
40
41 class PreparserTestSuite(testsuite.TestSuite): 35 class PreparserTestSuite(testsuite.TestSuite):
42 def __init__(self, name, root): 36 def __init__(self, name, root):
43 super(PreparserTestSuite, self).__init__(name, root) 37 super(PreparserTestSuite, self).__init__(name, root)
44 38
45 def shell(self): 39 def shell(self):
46 return "d8" 40 return "d8"
47 41
48 def _ParsePythonTestTemplates(self, result, filename): 42 def _ParsePythonTestTemplates(self, result, filename):
49 pathname = os.path.join(self.root, filename + ".pyt") 43 pathname = os.path.join(self.root, filename + ".pyt")
50 def Test(name, source, expectation, extra_flags=[]): 44 def Test(name, source, expectation, extra_flags=[]):
(...skipping 12 matching lines...) Expand all
63 for key in replacement.keys(): 57 for key in replacement.keys():
64 testname = testname.replace("$" + key, replacement[key]); 58 testname = testname.replace("$" + key, replacement[key]);
65 testsource = testsource.replace("$" + key, replacement[key]); 59 testsource = testsource.replace("$" + key, replacement[key]);
66 Test(testname, testsource, expectation) 60 Test(testname, testsource, expectation)
67 return MkTest 61 return MkTest
68 execfile(pathname, {"Test": Test, "Template": Template}) 62 execfile(pathname, {"Test": Test, "Template": Template})
69 63
70 def ListTests(self, context): 64 def ListTests(self, context):
71 result = [] 65 result = []
72 66
73 # Find all .js files in this directory.
74 filenames = [f[:-3] for f in os.listdir(self.root) if f.endswith(".js")]
75 filenames.sort()
76 for f in filenames:
77 flags = [f + ".js"]
78 test = testcase.TestCase(self, f, flags=flags)
79 result.append(test)
80
81 # Find all .pyt files in this directory. 67 # Find all .pyt files in this directory.
82 filenames = [f[:-4] for f in os.listdir(self.root) if f.endswith(".pyt")] 68 filenames = [f[:-4] for f in os.listdir(self.root) if f.endswith(".pyt")]
83 filenames.sort() 69 filenames.sort()
84 for f in filenames: 70 for f in filenames:
85 self._ParsePythonTestTemplates(result, f) 71 self._ParsePythonTestTemplates(result, f)
86 return result 72 return result
87 73
88 def GetFlagsForTestCase(self, testcase, context): 74 def GetFlagsForTestCase(self, testcase, context):
89 first = testcase.flags[0]
90 if first != "-e":
91 testcase.flags[0] = os.path.join(self.root, first)
92 source = self.GetSourceForTest(testcase)
93 result = []
94 flags_match = re.findall(FLAGS_PATTERN, source)
95 for match in flags_match:
96 result += match.strip().split()
97 result += context.mode_flags
98 result = [x for x in result if x not in INVALID_FLAGS]
99 result.append(os.path.join(self.root, testcase.path + ".js"))
100 return testcase.flags + result
101 return testcase.flags 75 return testcase.flags
102 76
103 def GetSourceForTest(self, testcase): 77 def GetSourceForTest(self, testcase):
104 if testcase.flags[0] == "-e": 78 assert testcase.flags[0] == "-e"
105 return testcase.flags[1] 79 return testcase.flags[1]
106 with open(testcase.flags[0]) as f:
107 return f.read()
108 80
109 def _VariantGeneratorFactory(self): 81 def _VariantGeneratorFactory(self):
110 return testsuite.StandardVariantGenerator 82 return testsuite.StandardVariantGenerator
111 83
112 84
113 def GetSuite(name, root): 85 def GetSuite(name, root):
114 return PreparserTestSuite(name, root) 86 return PreparserTestSuite(name, root)
OLDNEW
« no previous file with comments | « test/preparser/symbols-only.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698