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

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

Issue 68613004: Experimental parser: run lexer tests with make.*.check (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Fix test Created 7 years, 1 month 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/lexer/lexer.status ('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 # Copyright 2008 the V8 project authors. All rights reserved. 1 # Copyright 2008 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 15 matching lines...) Expand all
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 import os 28 import os
29 import re 29 import re
30 30
31 from testrunner.local import testsuite 31 from testrunner.local import testsuite
32 from testrunner.objects import testcase 32 from testrunner.objects import testcase
33 33
34 FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)") 34 FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)")
35 FILES_PATTERN = re.compile(r"//\s+Files:(.*)") 35 FILES_PATTERN = re.compile(r"//\s+Files:(.*)")
36 SELF_SCRIPT_PATTERN = re.compile(r"//\s+Env: TEST_FILE_NAME")
37 36
38 37
39 class MjsunitTestSuite(testsuite.TestSuite): 38 class LexerTestSuite(testsuite.TestSuite):
40 39
41 def __init__(self, name, root): 40 def __init__(self, name, root):
42 super(MjsunitTestSuite, self).__init__(name, root) 41 super(LexerTestSuite, self).__init__(name, root)
43 42
44 def ListTests(self, context): 43 def ListTests(self, context):
45 tests = [] 44 tests = []
46 for dirname, dirs, files in os.walk(self.root): 45 for dirname, dirs, files in os.walk(self.root):
47 for dotted in [x for x in dirs if x.startswith('.')]: 46 for dotted in [x for x in dirs if x.startswith('.')]:
48 dirs.remove(dotted) 47 dirs.remove(dotted)
49 dirs.sort() 48 dirs.sort()
50 files.sort() 49 files.sort()
51 for filename in files: 50 for filename in files:
52 if filename.endswith(".js") and filename != "mjsunit.js": 51 if filename.endswith(".js"):
53 testname = os.path.join(dirname[len(self.root) + 1:], filename[:-3]) 52 testname = os.path.join(dirname[len(self.root) + 1:], filename[:-3])
54 test = testcase.TestCase(self, testname) 53 test = testcase.TestCase(self, testname)
55 tests.append(test) 54 tests.append(test)
56 return tests 55 return tests
57 56
58 def GetFlagsForTestCase(self, testcase, context): 57 def GetFlagsForTestCase(self, testcase, context):
59 source = self.GetSourceForTest(testcase) 58 source = self.GetSourceForTest(testcase)
60 flags = [] + context.mode_flags 59 flags = [] + context.mode_flags
61 flags_match = re.findall(FLAGS_PATTERN, source) 60 flags_match = re.findall(FLAGS_PATTERN, source)
62 for match in flags_match: 61 for match in flags_match:
63 flags += match.strip().split() 62 flags += match.strip().split()
64 63
65 files_list = [] # List of file names to append to command arguments. 64 files_list = [] # List of file names to append to command arguments.
66 files_match = FILES_PATTERN.search(source); 65 files_match = FILES_PATTERN.search(source);
67 # Accept several lines of 'Files:'. 66 # Accept several lines of 'Files:'.
68 while True: 67 while True:
69 if files_match: 68 if files_match:
70 files_list += files_match.group(1).strip().split() 69 files_list += files_match.group(1).strip().split()
71 files_match = FILES_PATTERN.search(source, files_match.end()) 70 files_match = FILES_PATTERN.search(source, files_match.end())
72 else: 71 else:
73 break 72 break
74 files = [ os.path.normpath(os.path.join(self.root, '..', '..', f)) 73 files = [ os.path.normpath(os.path.join(self.root, '..', '..', f))
75 for f in files_list ] 74 for f in files_list ]
76 testfilename = os.path.join(self.root, testcase.path + self.suffix()) 75 testfilename = os.path.join(self.root, testcase.path + self.suffix())
77 if SELF_SCRIPT_PATTERN.search(source):
78 env = ["-e", "TEST_FILE_NAME=\"%s\"" % testfilename.replace("\\", "\\\\")]
79 files = env + files
80 files.append(os.path.join(self.root, "mjsunit.js"))
81 files.append(testfilename) 76 files.append(testfilename)
82 77
83 flags += files 78 flags += files
84 if context.isolates:
85 flags.append("--isolate")
86 flags += files
87 79
88 return testcase.flags + flags 80 return testcase.flags + flags
89 81
90 def GetSourceForTest(self, testcase): 82 def GetSourceForTest(self, testcase):
91 filename = os.path.join(self.root, testcase.path + self.suffix()) 83 filename = os.path.join(self.root, testcase.path + self.suffix())
92 with open(filename) as f: 84 with open(filename) as f:
93 return f.read() 85 return f.read()
94 86
87 def shell(self):
88 return "lexer-shell"
89
95 90
96 def GetSuite(name, root): 91 def GetSuite(name, root):
97 return MjsunitTestSuite(name, root) 92 return LexerTestSuite(name, root)
OLDNEW
« no previous file with comments | « test/lexer/lexer.status ('k') | tools/run-tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698