Author: jfrederic.clere(a)jboss.com
Date: 2008-07-14 12:39:43 -0400 (Mon, 14 Jul 2008)
New Revision: 713
Added:
sandbox/webapps/html/Crash.jsp
Log:
Crash test jsp.
Added: sandbox/webapps/html/Crash.jsp
===================================================================
--- sandbox/webapps/html/Crash.jsp (rev 0)
+++ sandbox/webapps/html/Crash.jsp 2008-07-14 16:39:43 UTC (rev 713)
@@ -0,0 +1,21 @@
+<body>
+<h1> Test 1 computing </h1>
+<%
+
+ double b = 0;
+ for(int i=1; i<200000; i++)
+ {
+ for(int j=1; j<2000000; j++)
+ {
+ for(int k=1; k<2000000; k++)
+ {
+ double a = k*100000;
+ b +=a;
+ }
+ }
+%>x<%
+ }
+
+%>
+</body>
+</html>
Show replies by date