Chromium Code Reviews| Index: test/webkit/function-apply-aliased.js |
| diff --git a/test/webkit/function-apply-aliased.js b/test/webkit/function-apply-aliased.js |
| index a6a7ff453364bf580e12b747190801227d7df6be..4c46c6c66a0f22f41006ac743db4967cee0f60e1 100644 |
| --- a/test/webkit/function-apply-aliased.js |
| +++ b/test/webkit/function-apply-aliased.js |
| @@ -68,18 +68,5 @@ shouldBe("myFunctionWithApply.apply(myObject, arg1Array)", '[myFunctionWithApply |
| shouldBe("forwarder(myFunctionWithApply, myObject, arg1Array)", '[myFunctionWithApply, "myFunctionWithApply.apply", myObject]'); |
| shouldBe("myFunctionWithApply.aliasedApply(myObject, arg1Array)", '[myObject, "myFunctionWithApply", "arg1"]'); |
| -function stackOverflowTest() { |
|
Benedikt Meurer
2015/09/10 09:49:34
Note: This test was testing specific stack overflo
|
| - try { |
| - var a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z; |
| - stackOverflowTest(); |
| - } catch(e) { |
| - // Blow the stack with a sparse array |
| - shouldThrow("myFunction.apply(null, new Array(500000))"); |
| - // Blow the stack with a sparse array that is sufficiently large to cause int overflow |
| - shouldThrow("myFunction.apply(null, new Array(1 << 30))"); |
| - } |
| -} |
| -stackOverflowTest(); |
| - |
| // Blow the stack recursing with arguments |
| shouldThrow("recurseArguments.apply(null, new Array(50000))"); |