Skip to content

Commit

Permalink
Disable resource tests for dotnet#308 only on netcore
Browse files Browse the repository at this point in the history
  • Loading branch information
rainersigwald committed Sep 14, 2016
1 parent 8461d10 commit 92fec51
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/XMakeTasks/UnitTests/GenerateResource_Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1528,7 +1528,11 @@ public void InvalidStateFile()
/// <summary>
/// Cause failures in ResourceReader
/// </summary>
#if RUNTIME_TYPE_NETCORE
[Fact (Skip = "https://github.com/Microsoft/msbuild/issues/308")]
#else
[Fact]
#endif
public void FailedResourceReader()
{
GenerateResource t = Utilities.CreateTask();
Expand Down Expand Up @@ -1596,7 +1600,11 @@ public void FailedSTRProperty()
/// <summary>
/// Reference passed in that can't be loaded should error
/// </summary>
[Fact(Skip = "https://github.com/Microsoft/msbuild/issues/308")]
#if RUNTIME_TYPE_NETCORE
[Fact (Skip = "https://github.com/Microsoft/msbuild/issues/308")]
#else
[Fact]
#endif
public void InvalidReference()
{
string txtFile = null;
Expand Down

0 comments on commit 92fec51

Please sign in to comment.