Index: test/webkit/fast/js/kde/func-decl.js |
diff --git a/test/webkit/sort-large-array.js b/test/webkit/fast/js/kde/func-decl.js |
similarity index 59% |
copy from test/webkit/sort-large-array.js |
copy to test/webkit/fast/js/kde/func-decl.js |
index 43eed3ff16488b50eec815905801bad0cbee8afa..b046b22bc9e9047841af1a95867d15a921947c4a 100644 |
--- a/test/webkit/sort-large-array.js |
+++ b/test/webkit/fast/js/kde/func-decl.js |
@@ -21,23 +21,48 @@ |
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
-description("This tests sorting an array with more than 10,000 values."); |
- |
-var test = []; |
-for (var i = 0; i < 10010; i++) |
- test.push(10009 - i); |
-test.sort(function(a, b) {return a - b;}); |
- |
-shouldBe("test.length", "10010"); |
-shouldBe("test[9999]", "9999"); |
-shouldBe("test[10000]", "10000"); |
-shouldBe("test.slice(0, 20).join(', ')", "'0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19'"); |
-shouldBe("test.slice(9990, 10010).join(', ')", "'9990, 9991, 9992, 9993, 9994, 9995, 9996, 9997, 9998, 9999, 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007, 10008, 10009'"); |
- |
-var testNoValues = []; |
-testNoValues.length = 10110; |
-testNoValues.sort(function(a, b) {return a < b;}); |
- |
-shouldBe("testNoValues.length", "10110"); |
-shouldBe("testNoValues[9999]", "undefined"); |
-shouldBe("testNoValues[10000]", "undefined"); |
+description("KDE JS Test"); |
+// We can't use normal shouldBe here, since they'd eval in the wrong context... |
+function shouldBeOfType(msg, val, type) { |
+ if (typeof(val) != type) |
+ testFailed(msg + ": value has type " + typeof(val) + " , not:" + type); |
+ else |
+ testPassed(msg); |
+} |
+ |
+function shouldBeVal(msg, val, expected) { |
+ if (val != expected) |
+ testFailed(msg + ": value is " + val + " , not:" + expected); |
+ else |
+ testPassed(msg); |
+} |
+ |
+f = "global"; |
+ |
+function test() { |
+ try { |
+ shouldBeOfType("Function declaration takes effect at entry", f, "function"); |
+ } |
+ catch (e) { |
+ testFailed("Scoping very broken!"); |
+ } |
+ |
+ for (var i = 0; i < 3; ++i) { |
+ if (i == 0) |
+ shouldBeOfType("Decl not yet overwritten", f, 'function'); |
+ else |
+ shouldBeOfType("Decl already overwritten", f, 'number'); |
+ |
+ f = 3; |
+ shouldBeVal("After assign ("+i+")", f, 3); |
+ |
+ function f() {}; |
+ shouldBeVal("function decls have no execution content", f, 3); |
+ |
+ f = 5; |
+ |
+ shouldBeVal("After assign #2 ("+i+")", f, 5); |
+ } |
+} |
+ |
+test(); |