aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/S8.6_A2_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/S8.6_A2_T2.js')
-rw-r--r--test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/S8.6_A2_T2.js44
1 files changed, 0 insertions, 44 deletions
diff --git a/test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/S8.6_A2_T2.js b/test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/S8.6_A2_T2.js
deleted file mode 100644
index e729e2f03..000000000
--- a/test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/S8.6_A2_T2.js
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S8.6_A2_T2;
-* @section: 8.6, 11.3.1;
-* @assertion: Do not crash with postincrement custom property;
-* @description: Try to implement postincrement for not declared custom property;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S8.6_A2_T2",
-
-path: "TestCases/08_Types/8.6_The_Object_Type/S8.6_A2_T2.js",
-
-assertion: "Do not crash with postincrement custom property",
-
-description: "Try to implement postincrement for not declared custom property",
-
-test: function testcase() {
- var __map={};
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#1
-if (!isNaN(__map.foo++)) {
- $ERROR('#1: var __map={}; __map.foo === Not-a-Number. Actual: ' + (__map.foo));
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#2
-if (!("foo" in __map)) {
- $ERROR('#2: var __map={}; "foo" in __map');
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
- }
-});
-