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

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Stedfast <jestedfa@microsoft.com>2020-04-25 20:51:04 +0300
committerJeffrey Stedfast <jestedfa@microsoft.com>2020-04-25 20:51:04 +0300
commit8cb86c373f3cac93dec5a7894cd5861c685f6bc8 (patch)
treeeacb85beafc09ff5bf8e1d82717034bc1ba4d08d /UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs
parentbdd7f28db02e5abaa3ff782d8d080e4e563ef67f (diff)
Got RawArray unit tests working for SoftDebuggerd16-7
Diffstat (limited to 'UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs')
-rw-r--r--UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs b/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs
index 2abcd16..089c1b8 100644
--- a/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs
+++ b/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs
@@ -340,6 +340,13 @@ namespace MonoDevelop.Debugger.Tests.TestApp
BaseClass bar = new OverrideClass();
INamedTypeSymbol namedTypeSymbol = new NamedTypeSymbol ();
+ byte[] rawByteArray = new byte[256];
+ char[] rawCharArray = new char[256];
+ for (int i = 0; i < 256; i++) {
+ rawByteArray[i] = (byte) i;
+ rawCharArray[i] = (char) i;
+ }
+
Console.WriteLine (n); /*break*/
}