Revision: 12968
Author: [email protected]
Date: Thu Nov 15 03:41:27 2012
Log: Update Test262 harness to recent version.
[email protected]
TEST=test262
Review URL: https://codereview.chromium.org/11308033
http://code.google.com/p/v8/source/detail?r=12968
Modified:
/branches/bleeding_edge/test/test262/README
/branches/bleeding_edge/test/test262/test262.status
/branches/bleeding_edge/test/test262/testcfg.py
=======================================
--- /branches/bleeding_edge/test/test262/README Fri Apr 13 09:09:15 2012
+++ /branches/bleeding_edge/test/test262/README Thu Nov 15 03:41:27 2012
@@ -4,11 +4,11 @@
http://hg.ecmascript.org/tests/test262
-at revision 334 as 'data' in this directory. Using later version
+at revision 360 as 'data' in this directory. Using later version
may be possible but the tests are only known to pass (and indeed run)
with that revision.
-hg clone -r 334 http://hg.ecmascript.org/tests/test262 data
+hg clone -r 360 http://hg.ecmascript.org/tests/test262 data
If you do update to a newer revision you may have to change the test
harness adapter code since it uses internal functionality from the
=======================================
--- /branches/bleeding_edge/test/test262/test262.status Wed Aug 8 02:19:55
2012
+++ /branches/bleeding_edge/test/test262/test262.status Thu Nov 15 03:41:27
2012
@@ -39,6 +39,11 @@
# V8 Bug: http://code.google.com/p/v8/issues/detail?id=691
11.2.3-3_3: FAIL
+# Strings that are considered canonically equivalent by the Unicode
standard
+# return a non-zero value on String.prototype.localeCompare calls.
+# V8 Bug: http://code.google.com/p/v8/issues/detail?id=2413
+15.5.4.9_CE: FAIL
+
##################### DELIBERATE INCOMPATIBILITIES #####################
# This tests precision of Math.tan and Math.sin. The implementation for
those
=======================================
--- /branches/bleeding_edge/test/test262/testcfg.py Mon Sep 24 02:38:46 2012
+++ /branches/bleeding_edge/test/test262/testcfg.py Thu Nov 15 03:41:27 2012
@@ -36,10 +36,11 @@
from testrunner.objects import testcase
-TEST_262_ARCHIVE_REVISION = "fb327c439e20" # This is the r334 revision.
-TEST_262_ARCHIVE_MD5 = "307acd166ec34629592f240dc12d57ed"
+TEST_262_ARCHIVE_REVISION = "53c4ade82d14" # This is the r360 revision.
+TEST_262_ARCHIVE_MD5 = "5fa4918b00e5d60e57bdd3c05deaeb0c"
TEST_262_URL = "http://hg.ecmascript.org/tests/test262/archive/%s.tar.bz2"
-TEST_262_HARNESS = ["sta.js"]
+TEST_262_HARNESS = ["sta.js", "testBuiltInObject.js"]
+TEST_262_SKIP = ["intl402"]
class Test262TestSuite(testsuite.TestSuite):
@@ -59,6 +60,8 @@
for dirname, dirs, files in os.walk(self.testroot):
for dotted in [x for x in dirs if x.startswith(".")]:
dirs.remove(dotted)
+ for skipped in [x for x in dirs if x in TEST_262_SKIP]:
+ dirs.remove(skipped)
dirs.sort()
files.sort()
for filename in files:
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev