@@ -59,7 +59,7 @@ public bool RunTests()
59
59
retVal = PosTest9 ( ) && retVal ;
60
60
// The current stack overflow behavior is to rip the process
61
61
// retVal = PosTest10() && retVal;
62
- retVal = PosTest11 ( ) && retVal ;
62
+ // retVal = PosTest11() && retVal;
63
63
retVal = PosTest12 ( ) && retVal ;
64
64
retVal = PosTest13 ( ) && retVal ;
65
65
retVal = PosTest14 ( ) && retVal ;
@@ -115,7 +115,7 @@ public bool RunTests()
115
115
public bool PosTest8 ( ) { return ExceptionTest ( 8 , "OverflowException (int64)" , typeof ( OverflowException ) , new TestDelegate ( ILHelper . Int64Overflow ) ) ; }
116
116
public bool PosTest9 ( ) { return ExceptionTest ( 9 , "OverflowException (int32)" , typeof ( OverflowException ) , new TestDelegate ( ILHelper . Int32Overflow ) ) ; }
117
117
// public bool PosTest10() { return ExceptionTest(10, "StackOverflow", typeof(StackOverflowException), new TestDelegate( GobbleStack )); }
118
- public bool PosTest11 ( ) { return ExceptionTest ( 11 , "OutOfMemory" , typeof ( OutOfMemoryException ) ,
118
+ /* public bool PosTest11() { return ExceptionTest(11, "OutOfMemory", typeof(OutOfMemoryException),
119
119
delegate()
120
120
{
121
121
List<object> list;
@@ -125,7 +125,7 @@ public bool RunTests()
125
125
// allocate memory (86 meg chunks)
126
126
list.Add( new byte[8388608]);
127
127
}
128
- } ) ; }
128
+ } ); } */
129
129
public bool PosTest12 ( ) { return ExceptionTest ( 12 , "IndexOutOfRange (single dim [less than])" , typeof ( IndexOutOfRangeException ) ,
130
130
delegate ( )
131
131
{
0 commit comments