aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMark Miller <erights@gmail.com>2011-09-24 19:44:20 -0700
committerMark Miller <erights@gmail.com>2011-09-24 19:44:20 -0700
commit9d3bab7052abafd044cf0de75bca4fba1b8da64d (patch)
treede6f2a9c10ef839b3bf78212f4c5eb3a66462f2b /test
parentd378bd6dddd3f1dc1fcd8122ffa8d0070c4f2b5c (diff)
Fixes https://bugs.ecmascript.org/show_bug.cgi?id=25
Hg: Enter commit message. Lines beginning with 'HG:' are removed.
Diffstat (limited to 'test')
-rw-r--r--test/config/excludelist.xml2
-rw-r--r--test/suite/sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A14_T1.js26
2 files changed, 0 insertions, 28 deletions
diff --git a/test/config/excludelist.xml b/test/config/excludelist.xml
index fb8fc362d..0dabee53f 100644
--- a/test/config/excludelist.xml
+++ b/test/config/excludelist.xml
@@ -123,8 +123,6 @@
<test id="S15.5.4.10_A1_T3">https://bugs.ecmascript.org/show_bug.cgi?id=23</test>
- <test id="S12.6.4_A14_T1">https://bugs.ecmascript.org/show_bug.cgi?id=25</test>
-
<test id="S15.5.4.8_A1_T11">https://bugs.ecmascript.org/show_bug.cgi?id=30</test>
<test id="S7.8.4_A6.4_T1">https://bugs.ecmascript.org/show_bug.cgi?id=58</test>
diff --git a/test/suite/sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A14_T1.js b/test/suite/sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A14_T1.js
deleted file mode 100644
index f3c16976b..000000000
--- a/test/suite/sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A14_T1.js
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S12.6.4_A14_T1;
-* @section: 12.6.4;
-* @assertion: FunctionExpession within a "for-in" Expression is allowed;
-* @description: Using "function __func(){return 0;}" as Expession;
-*/
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#
-for(x in function __func(){return 0;}){
- if (x=="prototype")
- var __reached = 1;
-};
-//
-//////////////////////////////////////////////////////////////////////////////
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#2
-if (__reached !== 1) {
- $ERROR('#2: function expession inside of for-in expression is allowed');
-}
-//
-//////////////////////////////////////////////////////////////////////////////