提交 637398fc 编写于 作者: C Charles Stoner

Unskip EE tests

上级 49ac6264
......@@ -2283,6 +2283,7 @@ static void Main()
/// Flow analysis should catch definite assignment errors
/// for variables declared within the expression.
/// </summary>
[WorkItem(549, "https://github.com/dotnet/roslyn/issues/549")]
[Fact(Skip = "https://github.com/dotnet/roslyn/issues/549")]
public void FlowAnalysis()
{
......
......@@ -248,11 +248,11 @@ class C
}
/// <summary>
/// Value should not be expandable if all members are marked
/// Instance of type where all members are marked
/// [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)].
/// </summary>
[WorkItem(934800, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/934800")]
[Fact(Skip = "934800")]
[Fact]
public void RootHidden_Empty()
{
var source =
......@@ -282,7 +282,9 @@ class C
evalFlags: DkmEvaluationResultFlags.None);
var evalResult = FormatResult("o", value);
Verify(evalResult,
EvalResult("o", "{C}", "C", "o"));
EvalResult("o", "{C}", "C", "o", DkmEvaluationResultFlags.Expandable)); // Ideally, not expandable.
var children = GetChildren(evalResult);
Verify(children); // No children.
}
[Fact]
......
......@@ -334,8 +334,7 @@ class Wrapper
EvalResult("NoDisplayPointer", PointerToString(IntPtr.Zero), "NoDisplay*", "wrapper.display.NoDisplayPointer"));
}
[WorkItem(321, "https://github.com/dotnet/roslyn/issues/321")]
[Fact(Skip = "https://github.com/dotnet/roslyn/issues/321")]
[Fact]
public void PointerDereferenceExpansion_NonNull()
{
var source = @"
......@@ -396,7 +395,7 @@ public C(IntPtr d, IntPtr nd)
Verify(DepthFirstSearch(FormatResult("c", testValue), maxDepth: 3),
EvalResult("c", "{C}", "C", "c", DkmEvaluationResultFlags.Expandable),
EvalResult("DisplayPointer", displayPtrString, "Display*", "c.DisplayPointer", DkmEvaluationResultFlags.Expandable),
EvalResult("Name", "Value", "Type", "*c.DisplayPointer", DkmEvaluationResultFlags.Expandable),
EvalResult("*c.DisplayPointer", "Value", "Type", "*c.DisplayPointer", DkmEvaluationResultFlags.Expandable),
EvalResult("DisplayPointer", displayPtrString, "Display*", "(*c.DisplayPointer).DisplayPointer", DkmEvaluationResultFlags.Expandable),
EvalResult("NoDisplayPointer", noDisplayPtrString, "NoDisplay*", "(*c.DisplayPointer).NoDisplayPointer", DkmEvaluationResultFlags.Expandable),
EvalResult("NoDisplayPointer", noDisplayPtrString, "NoDisplay*", "c.NoDisplayPointer", DkmEvaluationResultFlags.Expandable),
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册