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:
authorJan Kotas <jkotas@microsoft.com>2017-02-12 08:40:35 +0300
committerGitHub <noreply@github.com>2017-02-12 08:40:35 +0300
commit608267af43311b131d20e4111477ffb1109233a0 (patch)
tree1000b765463fbaeb3f0fdd08ae380e0fb8de0669 /src/Common
parent41ac0d427a4e5f17b6f20cc2bef098278da01d70 (diff)
Cleanup netstandard ifdefs and conditions (#16072)
* Cleanup netstandard conditions in csproj files * Cleanup netstandard17 ifdefs * Disable failing tests
Diffstat (limited to 'src/Common')
-rw-r--r--src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/RSA/EncryptDecrypt.cs2
-rw-r--r--src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/TripleDES/TripleDESCipherTests.cs3
2 files changed, 0 insertions, 5 deletions
diff --git a/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/RSA/EncryptDecrypt.cs b/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/RSA/EncryptDecrypt.cs
index e456681f5c..3cdcbd2b80 100644
--- a/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/RSA/EncryptDecrypt.cs
+++ b/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/RSA/EncryptDecrypt.cs
@@ -215,7 +215,6 @@ namespace System.Security.Cryptography.Rsa.Tests
Assert.Equal(TestData.HelloBytes, output);
}
-#if netstandard17
[Fact]
public static void NotSupportedValueMethods()
{
@@ -225,6 +224,5 @@ namespace System.Security.Cryptography.Rsa.Tests
Assert.Throws<NotSupportedException>(() => rsa.EncryptValue(null));
}
}
-#endif
}
}
diff --git a/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/TripleDES/TripleDESCipherTests.cs b/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/TripleDES/TripleDESCipherTests.cs
index a3b628d3f5..5646fa4f06 100644
--- a/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/TripleDES/TripleDESCipherTests.cs
+++ b/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/TripleDES/TripleDESCipherTests.cs
@@ -90,7 +90,6 @@ namespace System.Security.Cryptography.Encryption.TripleDes.Tests
}
}
-#if netstandard17
[Fact]
public static void TripleDESRoundTrip192BitsISO10126ECB()
{
@@ -162,8 +161,6 @@ namespace System.Security.Cryptography.Encryption.TripleDes.Tests
}
}
-#endif
-
[Fact]
public static void TripleDESRoundTrip192BitsZerosCBC()
{