mirror of https://github.com/tc39/test262.git
This commit is contained in:
parent
e394b50364
commit
7e7ebe85f2
|
@ -62,16 +62,7 @@
|
|||
<test id="S12.2_A9">Used this</test>
|
||||
<test id="S15.5.1.1_A1_T9">Using this pointer</test>
|
||||
<test id="S10.1.7_A1_T1">Using this pointer, intented for Global object</test>
|
||||
|
||||
<!--
|
||||
<test id="S15.9.3.1_A5_T1">https://bugs.ecmascript.org/show_bug.cgi?id=11</test>
|
||||
<test id="S15.9.3.1_A5_T2">https://bugs.ecmascript.org/show_bug.cgi?id=11</test>
|
||||
<test id="S15.9.3.1_A5_T3">https://bugs.ecmascript.org/show_bug.cgi?id=11</test>
|
||||
<test id="S15.9.3.1_A5_T4">https://bugs.ecmascript.org/show_bug.cgi?id=11</test>
|
||||
<test id="S15.9.3.1_A5_T5">https://bugs.ecmascript.org/show_bug.cgi?id=11</test>
|
||||
<test id="S15.9.3.1_A5_T6">https://bugs.ecmascript.org/show_bug.cgi?id=11</test>
|
||||
-->
|
||||
|
||||
|
||||
<test id="S15.5.4.14_A1_T6">https://bugs.ecmascript.org/show_bug.cgi?id=61</test>
|
||||
<test id="S15.5.4.14_A1_T7">https://bugs.ecmascript.org/show_bug.cgi?id=61</test>
|
||||
<test id="S15.5.4.14_A2_T7">https://bugs.ecmascript.org/show_bug.cgi?id=61</test>
|
||||
|
@ -81,7 +72,4 @@
|
|||
|
||||
<test id="15.4.4.4-5-c-i-1">https://bugs.ecmascript.org/show_bug.cgi?id=69</test>
|
||||
|
||||
<test id="S15.10.2.12_A1_T1">https://bugs.ecmascript.org/show_bug.cgi?id=60</test>
|
||||
<test id="S15.10.2.12_A2_T1">https://bugs.ecmascript.org/show_bug.cgi?id=60</test>
|
||||
|
||||
</excludeList>
|
||||
|
|
|
@ -514,10 +514,16 @@ if (i62.replace(/\s+/g, "") !== o62) {
|
|||
}
|
||||
|
||||
var i63 = "";
|
||||
for (var j = 64512; j < 65536; j++)
|
||||
for (var j = 64512; j < 65536; j++) {
|
||||
if (j===65279) { continue;} //Ignore BOM
|
||||
i63 += String.fromCharCode(j);
|
||||
}
|
||||
var o63 = i63;
|
||||
if (i63.replace(/\s+/g, "") !== o63) {
|
||||
$ERROR("#63: Error matching character class \s between character fc00 and ffff");
|
||||
}
|
||||
|
||||
var i64 = String.fromCharCode(65279);
|
||||
if (i64.replace(/\s/g, "") !== "") {
|
||||
$ERROR("#64: Error matching character class \s for BOM (feff)");
|
||||
}
|
|
@ -515,10 +515,16 @@ if (i62.replace(/\S+/g, "") !== o62) {
|
|||
}
|
||||
|
||||
var i63 = "";
|
||||
for (var j = 64512; j < 65536; j++)
|
||||
for (var j = 64512; j < 65536; j++) {
|
||||
if (j===65279) { continue;} //Ignore BOM
|
||||
i63 += String.fromCharCode(j);
|
||||
}
|
||||
var o63 = "";
|
||||
if (i63.replace(/\S+/g, "") !== o63) {
|
||||
$ERROR("#63: Error matching character class \S between character fc00 and ffff");
|
||||
}
|
||||
|
||||
var i64 = String.fromCharCode(65279);
|
||||
if (i64.replace(/\S/g, "") === "") {
|
||||
$ERROR("#64: Error matching character class \S for BOM (feff)");
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
|||
{"date":"2012-01-13","numTests":11115,"testSuite":["json/ch07.json","json/ch08.json","json/ch09.json","json/ch10.json","json/ch11.json","json/ch12.json","json/ch13.json","json/ch14.json","json/ch15.json"],"version":"ES5.1"}
|
||||
{"date":"2012-01-13","numTests":11117,"testSuite":["json/ch07.json","json/ch08.json","json/ch09.json","json/ch10.json","json/ch11.json","json/ch12.json","json/ch13.json","json/ch14.json","json/ch15.json"],"version":"ES5.1"}
|
Loading…
Reference in New Issue