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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Perez Rodriguez <joperezr@microsoft.com>2016-09-01 05:28:16 +0300
committerGitHub <noreply@github.com>2016-09-01 05:28:16 +0300
commit4644f59c447b56106594883a3f9a022bfbe870a4 (patch)
treecd8da77fe27d03d9446bb89866a630a4427dd70f /src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj
parent1e023c48a1482aabfbaf2121b6173efa728f061d (diff)
Enable netcoreapp1.1 tests to run as part of the CI build (#11236)
Enable netcoreapp1.1 tests to run as part of the CI build
Diffstat (limited to 'src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj')
-rw-r--r--src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj b/src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj
index d77b91f907..a7a02c8470 100644
--- a/src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj
+++ b/src/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj
@@ -61,7 +61,8 @@
<Compile Include="FileStream\Buffering_regression.cs" />
<Compile Include="FileStream\Flush.cs" />
<Compile Include="FileStream\Dispose.cs" />
- <Compile Include="FileStream\WriteAsync.cs" />
+ <!-- Disable the FileStream.WriteAsync tests for netcoreapp1.1 since one of them is failing. Issue: https://github.com/dotnet/corefx/issues/11303 -->
+ <Compile Condition="'$(TargetGroup)'!='netstandard1.7'" Include="FileStream\WriteAsync.cs" />
<Compile Include="FileStream\Write.cs" />
<Compile Include="FileStream\ToString.cs" />
<Compile Include="FileStream\WriteByte.cs" />