Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit bc4c766

Browse files
committed
Merge pull request #3882 from wtgodbe/rc2_EH
Disable OOM test in HardwareEH test
2 parents 461a029 + 4085c79 commit bc4c766

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

tests/src/baseservices/exceptions/simple/HardwareEh.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public bool RunTests()
5959
retVal = PosTest9() && retVal;
6060
// The current stack overflow behavior is to rip the process
6161
// retVal = PosTest10() && retVal;
62-
retVal = PosTest11() && retVal;
62+
// retVal = PosTest11() && retVal;
6363
retVal = PosTest12() && retVal;
6464
retVal = PosTest13() && retVal;
6565
retVal = PosTest14() && retVal;
@@ -115,7 +115,7 @@ public bool RunTests()
115115
public bool PosTest8() { return ExceptionTest(8, "OverflowException (int64)", typeof(OverflowException), new TestDelegate(ILHelper.Int64Overflow) ); }
116116
public bool PosTest9() { return ExceptionTest(9, "OverflowException (int32)", typeof(OverflowException), new TestDelegate(ILHelper.Int32Overflow) ); }
117117
// 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),
119119
delegate()
120120
{
121121
List<object> list;
@@ -125,7 +125,7 @@ public bool RunTests()
125125
// allocate memory (86 meg chunks)
126126
list.Add( new byte[8388608]);
127127
}
128-
} ); }
128+
} ); } */
129129
public bool PosTest12() { return ExceptionTest(12, "IndexOutOfRange (single dim [less than])", typeof(IndexOutOfRangeException),
130130
delegate()
131131
{

tests/testsFailingOutsideWindows.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
baseservices/exceptions/simple/HardwareEH/HardwareEH.sh
21
baseservices/exceptions/unittests/EHPatternTests/EHPatternTests.sh
32
baseservices/threading/paramthreadstart/ThreadStartString_1/ThreadStartString_1.sh
43
CoreMangLib/cti/system/multicastdelegate/MulticastDelegateCtor/MulticastDelegateCtor.sh

0 commit comments

Comments
 (0)