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

Side by Side Diff: test/test262-es6/testcfg.py

Issue 1136553008: Update Test262 to 5/30 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Arrow functions are now staged Created 5 years, 6 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/test262-es6/test262-es6.status ('k') | tools/testrunner/local/statusfile.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 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 19 matching lines...) Expand all
30 import os 30 import os
31 import shutil 31 import shutil
32 import sys 32 import sys
33 import tarfile 33 import tarfile
34 import imp 34 import imp
35 35
36 from testrunner.local import testsuite 36 from testrunner.local import testsuite
37 from testrunner.local import utils 37 from testrunner.local import utils
38 from testrunner.objects import testcase 38 from testrunner.objects import testcase
39 39
40 TEST_262_ARCHIVE_REVISION = "43acf61" # This is the 2015-03-31 revision. 40 TEST_262_ARCHIVE_REVISION = "6883892" # This is the 2015-05-30 revision.
41 TEST_262_ARCHIVE_MD5 = "a77a0352a0462be98e50522a15b7a3c4" 41 TEST_262_ARCHIVE_MD5 = "527d617024c554bfa46ec19853ae4fc0"
42 TEST_262_URL = "https://github.com/tc39/test262/tarball/%s" 42 TEST_262_URL = "https://github.com/tc39/test262/tarball/%s"
43 TEST_262_HARNESS_FILES = ["sta.js", "assert.js"] 43 TEST_262_HARNESS_FILES = ["sta.js", "assert.js"]
44 44
45 TEST_262_SUITE_PATH = ["data", "test"] 45 TEST_262_SUITE_PATH = ["data", "test"]
46 TEST_262_HARNESS_PATH = ["data", "harness"] 46 TEST_262_HARNESS_PATH = ["data", "harness"]
47 TEST_262_TOOLS_PATH = ["data", "tools", "packaging"] 47 TEST_262_TOOLS_PATH = ["data", "tools", "packaging"]
48 48
49 class Test262TestSuite(testsuite.TestSuite): 49 class Test262TestSuite(testsuite.TestSuite):
50 50
51 def __init__(self, name, root): 51 def __init__(self, name, root):
(...skipping 20 matching lines...) Expand all
72 filename[:-3]) 72 filename[:-3])
73 case = testcase.TestCase(self, testname) 73 case = testcase.TestCase(self, testname)
74 tests.append(case) 74 tests.append(case)
75 return tests 75 return tests
76 76
77 def GetFlagsForTestCase(self, testcase, context): 77 def GetFlagsForTestCase(self, testcase, context):
78 return (testcase.flags + context.mode_flags + self.harness + 78 return (testcase.flags + context.mode_flags + self.harness +
79 self.GetIncludesForTest(testcase) + ["--harmony"] + 79 self.GetIncludesForTest(testcase) + ["--harmony"] +
80 [os.path.join(self.testroot, testcase.path + ".js")]) 80 [os.path.join(self.testroot, testcase.path + ".js")])
81 81
82 def VariantFlags(self, testcase, default_flags):
83 flags = super(Test262TestSuite, self).VariantFlags(testcase, default_flags)
84 test_record = self.GetTestRecord(testcase)
85 if "noStrict" in test_record:
86 return flags
87 strict_flags = [f + ["--use-strict"] for f in flags]
88 if "onlyStrict" in test_record:
89 return strict_flags
90 return flags + strict_flags
91
82 def LoadParseTestRecord(self): 92 def LoadParseTestRecord(self):
83 if not self.ParseTestRecord: 93 if not self.ParseTestRecord:
84 root = os.path.join(self.root, *TEST_262_TOOLS_PATH) 94 root = os.path.join(self.root, *TEST_262_TOOLS_PATH)
85 f = None 95 f = None
86 try: 96 try:
87 (f, pathname, description) = imp.find_module("parseTestRecord", [root]) 97 (f, pathname, description) = imp.find_module("parseTestRecord", [root])
88 module = imp.load_module("parseTestRecord", f, pathname, description) 98 module = imp.load_module("parseTestRecord", f, pathname, description)
89 self.ParseTestRecord = module.parseTestRecord 99 self.ParseTestRecord = module.parseTestRecord
90 except: 100 except:
91 raise ImportError("Cannot load parseTestRecord; you may need to " 101 raise ImportError("Cannot load parseTestRecord; you may need to "
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 # Magic incantation to allow longer path names on Windows. 164 # Magic incantation to allow longer path names on Windows.
155 archive.extractall(u"\\\\?\\%s" % self.root) 165 archive.extractall(u"\\\\?\\%s" % self.root)
156 else: 166 else:
157 archive.extractall(self.root) 167 archive.extractall(self.root)
158 os.rename(os.path.join(self.root, "tc39-test262-%s" % revision), 168 os.rename(os.path.join(self.root, "tc39-test262-%s" % revision),
159 directory_name) 169 directory_name)
160 170
161 171
162 def GetSuite(name, root): 172 def GetSuite(name, root):
163 return Test262TestSuite(name, root) 173 return Test262TestSuite(name, root)
OLDNEW
« no previous file with comments | « test/test262-es6/test262-es6.status ('k') | tools/testrunner/local/statusfile.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698