OLD | NEW |
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 Loading... |
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 = "d24fd10" # This is the 2015-03-11 revision. | 40 TEST_262_ARCHIVE_REVISION = "43acf61" # This is the 2015-03-31 revision. |
41 TEST_262_ARCHIVE_MD5 = "96230f61d6e5dfac5c0e69f3acd74dee" | 41 TEST_262_ARCHIVE_MD5 = "a77a0352a0462be98e50522a15b7a3c4" |
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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 # Magic incantation to allow longer path names on Windows. | 154 # Magic incantation to allow longer path names on Windows. |
155 archive.extractall(u"\\\\?\\%s" % self.root) | 155 archive.extractall(u"\\\\?\\%s" % self.root) |
156 else: | 156 else: |
157 archive.extractall(self.root) | 157 archive.extractall(self.root) |
158 os.rename(os.path.join(self.root, "tc39-test262-%s" % revision), | 158 os.rename(os.path.join(self.root, "tc39-test262-%s" % revision), |
159 directory_name) | 159 directory_name) |
160 | 160 |
161 | 161 |
162 def GetSuite(name, root): | 162 def GetSuite(name, root): |
163 return Test262TestSuite(name, root) | 163 return Test262TestSuite(name, root) |
OLD | NEW |