Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/Test/System.Runtime.ExceptionServices/ExceptionDispatchInfoTest.cs')
-rw-r--r--mcs/class/corlib/Test/System.Runtime.ExceptionServices/ExceptionDispatchInfoTest.cs21
1 files changed, 20 insertions, 1 deletions
diff --git a/mcs/class/corlib/Test/System.Runtime.ExceptionServices/ExceptionDispatchInfoTest.cs b/mcs/class/corlib/Test/System.Runtime.ExceptionServices/ExceptionDispatchInfoTest.cs
index bef832b90c4..bd5e8dad948 100644
--- a/mcs/class/corlib/Test/System.Runtime.ExceptionServices/ExceptionDispatchInfoTest.cs
+++ b/mcs/class/corlib/Test/System.Runtime.ExceptionServices/ExceptionDispatchInfoTest.cs
@@ -30,6 +30,7 @@ using System;
using NUnit.Framework;
using System.Runtime.ExceptionServices;
using System.Threading.Tasks;
+using System.Diagnostics;
namespace MonoTests.System.Runtime.ExceptionServices
{
@@ -150,7 +151,25 @@ namespace MonoTests.System.Runtime.ExceptionServices
Assert.IsTrue (split [1].Contains ("---"), "#2");
Assert.IsTrue (split [4].Contains ("---"), "#3");
}
- }
+ }
+
+ [Test]
+ public void StackTraceUserCopy ()
+ {
+ try {
+ try {
+ throw new NotImplementedException ();
+ } catch (Exception e) {
+ var edi = ExceptionDispatchInfo.Capture (e);
+ edi.Throw();
+ }
+ } catch (Exception ex) {
+ var st = new StackTrace (ex, true);
+ var split = ex.StackTrace.Split (new[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries);
+ Assert.AreEqual (4, split.Length, "#1");
+ Assert.IsTrue (split [1].Contains ("---"), "#2");
+ }
+ }
}
}