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

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

Issue 1280903002: Revert of Test262 roll (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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') | 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 21 matching lines...) Expand all
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 statusfile 36 from testrunner.local import statusfile
37 from testrunner.local import testsuite 37 from testrunner.local import testsuite
38 from testrunner.local import utils 38 from testrunner.local import utils
39 from testrunner.objects import testcase 39 from testrunner.objects import testcase
40 40
41 # The revision hash needs to be 7 characters? 41 # The revision hash needs to be 7 characters?
42 TEST_262_ARCHIVE_REVISION = "258d212" # This is the 2015-07-31 revision. 42 TEST_262_ARCHIVE_REVISION = "c6ac390" # This is the 2015-07-06 revision.
43 TEST_262_ARCHIVE_MD5 = "a9b26e19ce582492642af973c8cee826" 43 TEST_262_ARCHIVE_MD5 = "e1393ef330f38e9cb1bfa4e3eada5ba8"
44 TEST_262_URL = "https://github.com/tc39/test262/tarball/%s" 44 TEST_262_URL = "https://github.com/tc39/test262/tarball/%s"
45 TEST_262_HARNESS_FILES = ["sta.js", "assert.js"] 45 TEST_262_HARNESS_FILES = ["sta.js", "assert.js"]
46 46
47 TEST_262_SUITE_PATH = ["data", "test"] 47 TEST_262_SUITE_PATH = ["data", "test"]
48 TEST_262_HARNESS_PATH = ["data", "harness"] 48 TEST_262_HARNESS_PATH = ["data", "harness"]
49 TEST_262_TOOLS_PATH = ["data", "tools", "packaging"] 49 TEST_262_TOOLS_PATH = ["data", "tools", "packaging"]
50 50
51 ALL_VARIANT_FLAGS_STRICT = dict( 51 ALL_VARIANT_FLAGS_STRICT = dict(
52 (v, [flags + ["--use-strict"] for flags in flag_sets]) 52 (v, [flags + ["--use-strict"] for flags in flag_sets])
53 for v, flag_sets in testsuite.ALL_VARIANT_FLAGS.iteritems() 53 for v, flag_sets in testsuite.ALL_VARIANT_FLAGS.iteritems()
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 # Magic incantation to allow longer path names on Windows. 226 # Magic incantation to allow longer path names on Windows.
227 archive.extractall(u"\\\\?\\%s" % self.root) 227 archive.extractall(u"\\\\?\\%s" % self.root)
228 else: 228 else:
229 archive.extractall(self.root) 229 archive.extractall(self.root)
230 os.rename(os.path.join(self.root, "tc39-test262-%s" % revision), 230 os.rename(os.path.join(self.root, "tc39-test262-%s" % revision),
231 directory_name) 231 directory_name)
232 232
233 233
234 def GetSuite(name, root): 234 def GetSuite(name, root):
235 return Test262TestSuite(name, root) 235 return Test262TestSuite(name, root)
OLDNEW
« no previous file with comments | « test/test262-es6/test262-es6.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698