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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2015-07-01 11:53:11 +0300
committerDavid Karlaš <david.karlas@xamarin.com>2015-07-01 11:53:11 +0300
commit3e626acf4958d4b410f6f4bda09bc0c70a0cb9f0 (patch)
treeb3d03b83423dc99eb7da87585600c85752a56118 /main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests
parent4f4df70a04e9a16c5f341e43fe0f1f0ad540af33 (diff)
[Debugger] Fixed build(track debugger-libs API changes)
-Made it buildable on Windows without .Net 2.0/3.5(CorApi project is now .Net 4.5) -Ignored implict casting on CorDebug
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests')
-rw-r--r--main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/EvaluationTests.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/EvaluationTests.cs b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/EvaluationTests.cs
index 701cd579d4..cc8a833cc0 100644
--- a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/EvaluationTests.cs
+++ b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/EvaluationTests.cs
@@ -882,6 +882,8 @@ namespace MonoDevelop.Debugger.Tests
Assert.AreEqual ("one | two", val.DisplayValue);
Assert.AreEqual ("SomeEnum", val.TypeName);
+ IgnoreCorDebugger ("CorDebugger: Implicit casting");
+
// Casting primitive <-> custom class via implicit operator
val = Eval ("(myNint)3");
if (!AllowTargetInvokes) {