Adding more coverage for 10.4.3 based on feedback in bug https://bugs.ecmascript.org/show_bug.cgi?id=333

This commit is contained in:
Bill Ticehurst 2012-05-17 10:30:10 -07:00
parent 0dca29de4a
commit f117cde741
8 changed files with 83 additions and 4 deletions

View File

@ -0,0 +1,18 @@
/// Copyright (c) 2012 Ecma International. All rights reserved.
/// Ecma International makes this code available under the terms and conditions set
/// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the
/// "Use Terms"). Any redistribution of this code must retain the above
/// copyright and this notice and otherwise comply with the Use Terms.
/**
* @path ch10/10.4/10.4.3/10.4.3-1-103.js
* @description Non strict mode should ToObject thisArg if not an object. Abstract equality operator should succeed.
*/
function testcase(){
Object.defineProperty(Object.prototype, "x", { get: function () { return this; } });
if((5).x == 0) return false;
if(!((5).x == 5)) return false;
return true;
}
runTestCase(testcase);

View File

@ -0,0 +1,20 @@
/// Copyright (c) 2012 Ecma International. All rights reserved.
/// Ecma International makes this code available under the terms and conditions set
/// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the
/// "Use Terms"). Any redistribution of this code must retain the above
/// copyright and this notice and otherwise comply with the Use Terms.
/**
*
* @path ch10/10.4/10.4.3/10.4.3-1-104.js
* @onlyStrict
* @description Strict mode should not ToObject thisArg if not an object. Strict equality operator should succeed.
*/
function testcase(){
Object.defineProperty(Object.prototype, "x", { get: function () { "use strict"; return this; } });
if(!((5).x === 5)) return false;
return true;
}
runTestCase(testcase);

View File

@ -0,0 +1,21 @@
/// Copyright (c) 2012 Ecma International. All rights reserved.
/// Ecma International makes this code available under the terms and conditions set
/// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the
/// "Use Terms"). Any redistribution of this code must retain the above
/// copyright and this notice and otherwise comply with the Use Terms.
/**
* Created based on feedback in https://bugs.ecmascript.org/show_bug.cgi?id=333
*
* @path ch10/10.4/10.4.3/10.4.3-1-105.js
* @description Non strict mode should ToObject thisArg if not an object. Return type should be object and strict equality should fail.
*/
function testcase(){
Object.defineProperty(Object.prototype, "x", { get: function () { return this; } });
if((5).x === 5) return false;
if(!(typeof (5).x === "object")) return false;
return true;
}
runTestCase(testcase);

View File

@ -0,0 +1,20 @@
/// Copyright (c) 2012 Ecma International. All rights reserved.
/// Ecma International makes this code available under the terms and conditions set
/// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the
/// "Use Terms"). Any redistribution of this code must retain the above
/// copyright and this notice and otherwise comply with the Use Terms.
/**
* Created based on feedback in https://bugs.ecmascript.org/show_bug.cgi?id=333
*
* @path ch10/10.4/10.4.3/10.4.3-1-106.js
* @onlyStrict
* @description Strict mode should not ToObject thisArg if not an object. Return type should be 'number'.
*/
function testcase(){
Object.defineProperty(Object.prototype, "x", { get: function () { "use strict"; return this; } });
if(!(typeof (5).x === "number")) return false;
return true;
}
runTestCase(testcase);

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"numTests":11565,"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"]} {"numTests":11569,"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"]}

View File

@ -1 +1 @@
{"date":"2012-05-16","version":"ES5.1"} {"date":"2012-05-17","version":"ES5.1"}

View File

@ -1 +1 @@
{"numTests":372,"testSuite":["json/ch10.json"]} {"numTests":376,"testSuite":["json/ch10.json"]}