Skip to content

Commit

Permalink
Merge pull request dotnet#8845 from natidea/disableXmlFuture
Browse files Browse the repository at this point in the history
Disable Failing Documentation Tests (Future)
  • Loading branch information
genlu committed Feb 17, 2016
2 parents 6e887b7 + a82c2d1 commit f445f43
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2694,7 +2694,7 @@ class C {{ }}
Assert.Equal(string.Format(expectedTemplate, xmlFilePath1), actual);
}

[ClrOnlyFact(ClrOnlyReason.DocumentationComment)]
[ClrOnlyFact(ClrOnlyReason.DocumentationComment, Skip = "https://github.com/dotnet/roslyn/issues/8807")]
public void WRN_XMLParseIncludeError_Source()
{
var xmlFile = Temp.CreateFile(extension: ".xml").WriteAllText("<OpenWithoutClose>");
Expand Down Expand Up @@ -3679,7 +3679,7 @@ void M(int x, int x) {{ }}
Assert.Equal(expected, actual);
}

[ClrOnlyFact(ClrOnlyReason.DocumentationComment)]
[ClrOnlyFact(ClrOnlyReason.DocumentationComment, Skip = "https://github.com/dotnet/roslyn/issues/8807")]
public void IncludedName_DuplicateNameAttribute()
{
var xmlFile = Temp.CreateFile(extension: ".xml").WriteAllText(@"<param name=""x"" name=""y""/>");
Expand Down Expand Up @@ -4513,7 +4513,7 @@ class C
}

// As in dev11, the pragma has no effect.
[ClrOnlyFact(ClrOnlyReason.DocumentationComment)]
[ClrOnlyFact(ClrOnlyReason.DocumentationComment, Skip = "https://github.com/dotnet/roslyn/issues/8807")]
public void PragmaDisableWarningInXmlFile()
{
var xmlFile = Temp.CreateFile(extension: ".xml").WriteAllText("&");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void XmlSyntaxError_Inline()
Diagnostic(ErrorCode.WRN_XMLParseError, "").WithArguments("unclosed"));
}

[ClrOnlyFact(ClrOnlyReason.DocumentationComment)]
[ClrOnlyFact(ClrOnlyReason.DocumentationComment, Skip = "https://github.com/dotnet/roslyn/issues/8807")]
public void XmlSyntaxError_Included()
{
var xml = @"<unclosed>";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7359,7 +7359,7 @@ End Class
"Function System.Int32.Parse(s As System.String, style As System.Globalization.NumberStyles, provider As System.IFormatProvider) As System.Int32")
End Sub

<Fact>
<Fact(Skip:="https://github.com/dotnet/roslyn/issues/8807")>
Public Sub Include_XPathNotFound_WRN_XMLDocInvalidXMLFragment()
Dim xmlText = <root/>
Dim xmlFile = Temp.CreateFile(extension:=".xml").WriteAllText(xmlText.ToString)
Expand Down Expand Up @@ -7405,7 +7405,7 @@ AssemblyName
End Sub

<WorkItem(684184, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/684184")>
<Fact>
<Fact(Skip:="https://github.com/dotnet/roslyn/issues/8807")>
Public Sub Bug684184()
Dim xmlText =
<docs>
Expand Down Expand Up @@ -7450,7 +7450,7 @@ AssemblyName
stringMapper:=Function(o) StringReplace(o, xmlFile.ToString(), "**FILE**"), ensureEnglishUICulture:=True)
End Sub

<Fact>
<Fact(Skip:="https://github.com/dotnet/roslyn/issues/8807")>
Public Sub Include_FileNotFound_WRN_XMLDocBadFormedXML()
Dim xmlText = <root/>
Dim xmlFile = Temp.CreateFile(extension:=".xml").WriteAllText(xmlText.ToString)
Expand Down Expand Up @@ -7495,7 +7495,7 @@ AssemblyName
stringMapper:=Function(o) StringReplace(o, xmlFile.ToString(), "**FILE**"), ensureEnglishUICulture:=True)
End Sub

<Fact>
<Fact(Skip:="https://github.com/dotnet/roslyn/issues/8807")>
Public Sub Include_IOError_WRN_XMLDocBadFormedXML()
Dim xmlText = <root>
<target>Included</target>
Expand Down Expand Up @@ -7546,7 +7546,7 @@ AssemblyName
End Using
End Sub

<Fact>
<Fact(Skip:="https://github.com/dotnet/roslyn/issues/8807")>
Public Sub Include_XmlError_WRN_XMLDocBadFormedXML()
Dim xmlText =
<![CDATA[
Expand Down Expand Up @@ -7596,7 +7596,7 @@ AssemblyName
stringMapper:=Function(o) StringReplace(o, xmlFile.ToString(), "**FILE**"), ensureEnglishUICulture:=True)
End Sub

<Fact>
<Fact(Skip:="https://github.com/dotnet/roslyn/issues/8807")>
Public Sub Include_XDocument_WRN_XMLDocInvalidXMLFragment()
Dim xmlText =
<![CDATA[
Expand Down Expand Up @@ -7646,7 +7646,7 @@ AssemblyName
stringMapper:=Function(o) StringReplace(o, xmlFile.ToString(), "**FILE**"), ensureEnglishUICulture:=True)
End Sub

<Fact>
<Fact(Skip:="https://github.com/dotnet/roslyn/issues/8807")>
Public Sub Include_Cycle_WRN_XMLDocInvalidXMLFragment()
Dim xmlText =
<root>
Expand Down Expand Up @@ -7712,7 +7712,7 @@ AssemblyName
stringMapper:=Function(o) StringReplace(o, xmlFile.ToString(), "**FILE**"), ensureEnglishUICulture:=True)
End Sub

<Fact>
<Fact(Skip:="https://github.com/dotnet/roslyn/issues/8807")>
Public Sub Include_XPathError_WRN_XMLDocBadFormedXML()
Dim xmlText =
<![CDATA[
Expand Down

0 comments on commit f445f43

Please sign in to comment.