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:
authorAnirudh Agnihotry <anirudhagnihotry098@gmail.com>2018-03-23 16:22:35 +0300
committerStephen Toub <stoub@microsoft.com>2018-03-23 16:22:35 +0300
commitc239771fe12ad9e591fc288a8bf8757c4dba84a8 (patch)
treebec87d60aa825b827755b6c760ad34ac7ae9cd21 /src/System.IO.FileSystem/tests
parent6b9440735abc9c4e369376bca097766527971a7a (diff)
Disabling test on alpine (#28401)
* Disabling test on alpine * Alpine Detection added to platformDetection * ref and win updated
Diffstat (limited to 'src/System.IO.FileSystem/tests')
-rw-r--r--src/System.IO.FileSystem/tests/Directory/Delete.cs2
-rw-r--r--src/System.IO.FileSystem/tests/File/Delete.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/System.IO.FileSystem/tests/Directory/Delete.cs b/src/System.IO.FileSystem/tests/Directory/Delete.cs
index 98ab80c3ef..52f5b9dfad 100644
--- a/src/System.IO.FileSystem/tests/Directory/Delete.cs
+++ b/src/System.IO.FileSystem/tests/Directory/Delete.cs
@@ -208,7 +208,7 @@ namespace System.IO.Tests
[Trait(XunitConstants.Category, XunitConstants.RequiresElevation)]
public void Unix_NotFoundDirectory_ReadOnlyVolume()
{
- if (PlatformDetection.IsRedHatFamily6)
+ if (PlatformDetection.IsRedHatFamily6 || PlatformDetection.IsAlpine)
return; // [ActiveIssue(https://github.com/dotnet/corefx/issues/21920)]
ReadOnly_FileSystemHelper(readOnlyDirectory =>
diff --git a/src/System.IO.FileSystem/tests/File/Delete.cs b/src/System.IO.FileSystem/tests/File/Delete.cs
index ef0ba5fc63..7cd005f944 100644
--- a/src/System.IO.FileSystem/tests/File/Delete.cs
+++ b/src/System.IO.FileSystem/tests/File/Delete.cs
@@ -124,7 +124,7 @@ namespace System.IO.Tests
[Trait(XunitConstants.Category, XunitConstants.RequiresElevation)]
public void Unix_NonExistentPath_ReadOnlyVolume()
{
- if (PlatformDetection.IsRedHatFamily6)
+ if (PlatformDetection.IsRedHatFamily6 || PlatformDetection.IsAlpine)
return; // [ActiveIssue(https://github.com/dotnet/corefx/issues/21920)]
ReadOnly_FileSystemHelper(readOnlyDirectory =>