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:
-rw-r--r--src/System.Globalization.Extensions/tests/IdnMapping/IdnMappingThrows.cs1
-rw-r--r--src/System.Security.Cryptography.Encoding/tests/Oid.cs3
-rw-r--r--src/System.Text.Encoding/tests/Encoding/Encoding.cs3
-rw-r--r--src/System.Text.Encoding/tests/Encoding/EncodingGetChars1.cs5
-rw-r--r--src/System.Text.Encoding/tests/Encoding/EncodingGetEncoding2.cs3
-rw-r--r--src/System.Text.Encoding/tests/project.json1
-rw-r--r--src/System.Text.Encoding/tests/project.lock.json235
7 files changed, 251 insertions, 0 deletions
diff --git a/src/System.Globalization.Extensions/tests/IdnMapping/IdnMappingThrows.cs b/src/System.Globalization.Extensions/tests/IdnMapping/IdnMappingThrows.cs
index 8d5fea61f6..c9edcfc253 100644
--- a/src/System.Globalization.Extensions/tests/IdnMapping/IdnMappingThrows.cs
+++ b/src/System.Globalization.Extensions/tests/IdnMapping/IdnMappingThrows.cs
@@ -22,6 +22,7 @@ namespace System.Globalization.Extensions.Tests
}
[Fact]
+ [ActiveIssue(810, PlatformID.AnyUnix)]
public static void GetUnicodeThrows()
{
IdnMapping idnMapping = new IdnMapping();
diff --git a/src/System.Security.Cryptography.Encoding/tests/Oid.cs b/src/System.Security.Cryptography.Encoding/tests/Oid.cs
index d7c5614767..7339b29c50 100644
--- a/src/System.Security.Cryptography.Encoding/tests/Oid.cs
+++ b/src/System.Security.Cryptography.Encoding/tests/Oid.cs
@@ -118,6 +118,7 @@ namespace System.Security.Cryptography.Encoding.Tests
}
[Fact]
+ [ActiveIssue(1863, PlatformID.AnyUnix)]
public static void TestFromFriendlyName()
{
Oid oid;
@@ -138,6 +139,7 @@ namespace System.Security.Cryptography.Encoding.Tests
}
[Fact]
+ [ActiveIssue(1863, PlatformID.AnyUnix)]
public static void TestFromOidValue()
{
Oid oid;
@@ -158,6 +160,7 @@ namespace System.Security.Cryptography.Encoding.Tests
}
[Fact]
+ [ActiveIssue(1863, PlatformID.AnyUnix)]
public static void TestKnownValues()
{
Oid oid;
diff --git a/src/System.Text.Encoding/tests/Encoding/Encoding.cs b/src/System.Text.Encoding/tests/Encoding/Encoding.cs
index 99e1e4fda6..714ae85387 100644
--- a/src/System.Text.Encoding/tests/Encoding/Encoding.cs
+++ b/src/System.Text.Encoding/tests/Encoding/Encoding.cs
@@ -17,6 +17,7 @@ namespace System.Text.EncodingTests
private static byte[] s_UTF8BEBom = new byte[] { 0xFE, 0xFF };
[Fact]
+ [ActiveIssue(846, PlatformID.AnyUnix)]
public static void TestGetEncoding()
{
Encoding encoding = Encoding.GetEncoding("UTF-32LE");
@@ -129,6 +130,7 @@ namespace System.Text.EncodingTests
};
[Fact]
+ [ActiveIssue(846, PlatformID.AnyUnix)]
public static void TestEncodingNameAndCopdepageNumber()
{
foreach (var map in s_mapping)
@@ -177,6 +179,7 @@ namespace System.Text.EncodingTests
}
[Fact]
+ [ActiveIssue(846, PlatformID.AnyUnix)]
public static void TestCodePageToWebNameMappings()
{
foreach (var mapping in s_codePageToWebNameMappings)
diff --git a/src/System.Text.Encoding/tests/Encoding/EncodingGetChars1.cs b/src/System.Text.Encoding/tests/Encoding/EncodingGetChars1.cs
index 77f6607d57..6cd0096dfe 100644
--- a/src/System.Text.Encoding/tests/Encoding/EncodingGetChars1.cs
+++ b/src/System.Text.Encoding/tests/Encoding/EncodingGetChars1.cs
@@ -215,30 +215,35 @@ namespace System.Text.EncodingTests
}
[Fact]
+ [ActiveIssue(846, PlatformID.AnyUnix)]
public void PosTest35()
{
PositiveTestString(Encoding.GetEncoding("UTF-16BE"), "TestTest\uFFFD", new byte[] { 0, 84, 0, 101, 0, 115, 0, 116, 0, 84, 0, 101, 0, 115, 0, 116, 216, 3 }, "00I4");
}
[Fact]
+ [ActiveIssue(846, PlatformID.AnyUnix)]
public void PosTest36()
{
PositiveTestString(Encoding.GetEncoding("UTF-16BE"), "\uFFFD\uFFFD", new byte[] { 216, 3, 48 }, "00J4");
}
[Fact]
+ [ActiveIssue(846, PlatformID.AnyUnix)]
public void PosTest37()
{
PositiveTestString(Encoding.GetEncoding("UTF-16BE"), "\uD803\uDD75\uD803\uDD75\uD803\uDD75", new byte[] { 216, 3, 221, 117, 216, 3, 221, 117, 216, 3, 221, 117 }, "00K4");
}
[Fact]
+ [ActiveIssue(846, PlatformID.AnyUnix)]
public void PosTest38()
{
PositiveTestString(Encoding.GetEncoding("UTF-16BE"), "\u0130", new byte[] { 1, 48 }, "00L4");
}
[Fact]
+ [ActiveIssue(846, PlatformID.AnyUnix)]
public void PosTest39()
{
PositiveTestString(Encoding.GetEncoding("UTF-16BE"), "\uD803\uDD75\uD803\uDD75", new byte[] { 216, 3, 221, 117, 216, 3, 221, 117 }, "0A24");
diff --git a/src/System.Text.Encoding/tests/Encoding/EncodingGetEncoding2.cs b/src/System.Text.Encoding/tests/Encoding/EncodingGetEncoding2.cs
index 33ad4dc55e..c273f32ee7 100644
--- a/src/System.Text.Encoding/tests/Encoding/EncodingGetEncoding2.cs
+++ b/src/System.Text.Encoding/tests/Encoding/EncodingGetEncoding2.cs
@@ -21,6 +21,7 @@ namespace System.Text.EncodingTests
// PosTest2: Get Encoding with the defined name 4
[Fact]
+ [ActiveIssue(846, PlatformID.AnyUnix)]
public void PosTest2()
{
string name = "Unicode";
@@ -32,6 +33,7 @@ namespace System.Text.EncodingTests
#region NegativeTest
// NegTest1: the name is not valid codepage name
[Fact]
+ [ActiveIssue(846, PlatformID.AnyUnix)]
public void NegTest1()
{
string name = null;
@@ -43,6 +45,7 @@ namespace System.Text.EncodingTests
// NegTest2: The platform do not support the named codepage
[Fact]
+ [ActiveIssue(846, PlatformID.AnyUnix)]
public void NegTest2()
{
string name = "helloworld";
diff --git a/src/System.Text.Encoding/tests/project.json b/src/System.Text.Encoding/tests/project.json
index e779231e02..78af8503cc 100644
--- a/src/System.Text.Encoding/tests/project.json
+++ b/src/System.Text.Encoding/tests/project.json
@@ -11,6 +11,7 @@
"xunit.abstractions.netcore": "1.0.0-prerelease",
"xunit.assert": "2.0.0-beta5-build2785",
"xunit.core.netcore": "1.0.1-prerelease",
+ "xunit.netcore.extensions": "1.0.0-prerelease-*",
"xunit.runner.visualstudio": "0.99.9-build1021"
},
"frameworks": {
diff --git a/src/System.Text.Encoding/tests/project.lock.json b/src/System.Text.Encoding/tests/project.lock.json
index 28b243a0e7..20f6233e85 100644
--- a/src/System.Text.Encoding/tests/project.lock.json
+++ b/src/System.Text.Encoding/tests/project.lock.json
@@ -14,6 +14,17 @@
"lib/DNXCore50/System.Collections.dll"
]
},
+ "System.Diagnostics.Debug/4.0.10-beta-22816": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-22816"
+ },
+ "compile": [
+ "lib/contract/System.Diagnostics.Debug.dll"
+ ],
+ "runtime": [
+ "lib/aspnetcore50/System.Diagnostics.Debug.dll"
+ ]
+ },
"System.Globalization/4.0.10-beta-22927": {
"dependencies": {
"System.Runtime": "4.0.0-beta-22927"
@@ -25,11 +36,60 @@
"lib/DNXCore50/System.Globalization.dll"
]
},
+ "System.IO/4.0.10-beta-22816": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-22816",
+ "System.Text.Encoding": "4.0.10-beta-22816",
+ "System.Threading.Tasks": "4.0.10-beta-22816"
+ },
+ "compile": [
+ "lib/contract/System.IO.dll"
+ ],
+ "runtime": [
+ "lib/aspnetcore50/System.IO.dll"
+ ]
+ },
+ "System.Linq/4.0.0-beta-22816": {
+ "dependencies": {
+ "System.Collections": "4.0.10-beta-22816",
+ "System.Runtime": "4.0.20-beta-22816"
+ },
+ "compile": [
+ "lib/contract/System.Linq.dll"
+ ],
+ "runtime": [
+ "lib/aspnetcore50/System.Linq.dll"
+ ]
+ },
"System.Private.Uri/4.0.0-beta-22927": {
"runtime": [
"lib/DNXCore50/System.Private.Uri.dll"
]
},
+ "System.Reflection/4.0.10-beta-22816": {
+ "dependencies": {
+ "System.IO": "4.0.10-beta-22816",
+ "System.Reflection.Primitives": "4.0.0-beta-22816",
+ "System.Runtime": "4.0.20-beta-22816"
+ },
+ "compile": [
+ "lib/contract/System.Reflection.dll"
+ ],
+ "runtime": [
+ "lib/aspnetcore50/System.Reflection.dll"
+ ]
+ },
+ "System.Reflection.Primitives/4.0.0-beta-22816": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-22816"
+ },
+ "compile": [
+ "lib/contract/System.Reflection.Primitives.dll"
+ ],
+ "runtime": [
+ "lib/aspnetcore50/System.Reflection.Primitives.dll"
+ ]
+ },
"System.Runtime/4.0.20-beta-22927": {
"dependencies": {
"System.Private.Uri": "4.0.0-beta-22927"
@@ -52,6 +112,31 @@
"lib/DNXCore50/System.Runtime.Extensions.dll"
]
},
+ "System.Runtime.Handles/4.0.0-beta-22816": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-22816"
+ },
+ "compile": [
+ "lib/contract/System.Runtime.Handles.dll"
+ ],
+ "runtime": [
+ "lib/aspnetcore50/System.Runtime.Handles.dll"
+ ]
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-22816": {
+ "dependencies": {
+ "System.Reflection": "4.0.10-beta-22816",
+ "System.Reflection.Primitives": "4.0.0-beta-22816",
+ "System.Runtime": "4.0.20-beta-22816",
+ "System.Runtime.Handles": "4.0.0-beta-22816"
+ },
+ "compile": [
+ "lib/contract/System.Runtime.InteropServices.dll"
+ ],
+ "runtime": [
+ "lib/aspnetcore50/System.Runtime.InteropServices.dll"
+ ]
+ },
"System.Text.Encoding/4.0.10-beta-22927": {
"dependencies": {
"System.Runtime": "4.0.0-beta-22927"
@@ -75,6 +160,18 @@
"lib/DNXCore50/System.Text.Encoding.Extensions.dll"
]
},
+ "System.Threading/4.0.10-beta-22816": {
+ "dependencies": {
+ "System.Runtime": "4.0.20-beta-22816",
+ "System.Threading.Tasks": "4.0.10-beta-22816"
+ },
+ "compile": [
+ "lib/contract/System.Threading.dll"
+ ],
+ "runtime": [
+ "lib/aspnetcore50/System.Threading.dll"
+ ]
+ },
"System.Threading.Tasks/4.0.10-beta-22927": {
"dependencies": {
"System.Runtime": "4.0.0-beta-22927"
@@ -138,6 +235,30 @@
"lib/portable-net45+aspnetcore50+win+wpa81+wp80/xunit.core.dll"
]
},
+ "xunit.netcore.extensions/1.0.0-prerelease-00050": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.0.10-beta-22703",
+ "System.IO": "4.0.10-beta-22703",
+ "System.Linq": "4.0.0-beta-22703",
+ "System.Reflection": "4.0.10-beta-22703",
+ "System.Reflection.Primitives": "4.0.0-beta-22703",
+ "System.Runtime": "4.0.20-beta-22703",
+ "System.Runtime.Extensions": "4.0.10-beta-22703",
+ "System.Runtime.Handles": "4.0.0-beta-22703",
+ "System.Runtime.InteropServices": "4.0.20-beta-22703",
+ "System.Text.Encoding": "4.0.10-beta-22703",
+ "System.Threading": "4.0.10-beta-22703",
+ "System.Threading.Tasks": "4.0.10-beta-22703",
+ "xunit.abstractions.netcore": "1.0.0-prerelease",
+ "xunit.core.netcore": "1.0.0-prerelease"
+ },
+ "compile": [
+ "lib/portable-wpa80+win80+net45+aspnetcore50/Xunit.NetCore.Extensions.dll"
+ ],
+ "runtime": [
+ "lib/portable-wpa80+win80+net45+aspnetcore50/Xunit.NetCore.Extensions.dll"
+ ]
+ },
"xunit.runner.visualstudio/0.99.9-build1021": {}
}
},
@@ -156,6 +277,19 @@
"runtimes/win8-aot/lib/netcore50/System.Collections.dll"
]
},
+ "System.Diagnostics.Debug/4.0.10-beta-22816": {
+ "sha512": "sFAWo06FoJmZLT0oH/HzbpWUdaEPK6ao58ttrdqnQ6QXRtTH85NXHRrhxpU/tDSODX1fPuwIEf+i5vSVJvoCOQ==",
+ "files": [
+ "License.rtf",
+ "System.Diagnostics.Debug.4.0.10-beta-22816.nupkg",
+ "System.Diagnostics.Debug.4.0.10-beta-22816.nupkg.sha512",
+ "System.Diagnostics.Debug.nuspec",
+ "lib/aspnetcore50/System.Diagnostics.Debug.dll",
+ "lib/contract/System.Diagnostics.Debug.dll",
+ "lib/net45/System.Diagnostics.Debug.dll",
+ "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Diagnostics.Debug.dll"
+ ]
+ },
"System.Globalization/4.0.10-beta-22927": {
"sha512": "rbmDPmDERoBkhUzJl7R9U9lWBmw7CjbF4e9u3idmekXXrSEoAMQpjU5YlRsFjG81q1CUBaGHDGnl5XYaVPKpsg==",
"files": [
@@ -170,6 +304,32 @@
"runtimes/win8-aot/lib/netcore50/System.Globalization.dll"
]
},
+ "System.IO/4.0.10-beta-22816": {
+ "sha512": "PjyH9UMFVQHSl8g1XR+M6Q/mG2RTpPff42kG9aygXyR/Wyt/O/wOiyxZ2SaYNl8e86yecKRh9SnK2RS9thI4ig==",
+ "files": [
+ "License.rtf",
+ "System.IO.4.0.10-beta-22816.nupkg",
+ "System.IO.4.0.10-beta-22816.nupkg.sha512",
+ "System.IO.nuspec",
+ "lib/aspnetcore50/System.IO.dll",
+ "lib/contract/System.IO.dll",
+ "lib/net45/System.IO.dll",
+ "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.IO.dll"
+ ]
+ },
+ "System.Linq/4.0.0-beta-22816": {
+ "sha512": "QlwRD8FTiYAZ7BxEjB5u9vjKaAHZ6KvuZYm+4tjYduTIWpFI3o34UjowJXCaPlLwc8USRshAXLgnsQ3iaOjv8Q==",
+ "files": [
+ "License.rtf",
+ "System.Linq.4.0.0-beta-22816.nupkg",
+ "System.Linq.4.0.0-beta-22816.nupkg.sha512",
+ "System.Linq.nuspec",
+ "lib/aspnetcore50/System.Linq.dll",
+ "lib/contract/System.Linq.dll",
+ "lib/net45/System.Linq.dll",
+ "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Linq.dll"
+ ]
+ },
"System.Private.Uri/4.0.0-beta-22927": {
"sha512": "iugPtkQOqHeCuyvBsQ3Z8vc+4YgL1ySVhe5IiMYIJ5J9kVqMGC9/9tb7SNd80nVSMYIOV/L/SPI1dTDYC+FOvA==",
"files": [
@@ -183,6 +343,32 @@
"runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll"
]
},
+ "System.Reflection/4.0.10-beta-22816": {
+ "sha512": "YzEbWoLTsPOUL4mPRbeRkhfJ12VgIJVy7fwoKnp0RgxXwuQQ2CPFt2E3qjl2TWzMpnhyRBtM2L/qkt4Dlg8Okw==",
+ "files": [
+ "License.rtf",
+ "System.Reflection.4.0.10-beta-22816.nupkg",
+ "System.Reflection.4.0.10-beta-22816.nupkg.sha512",
+ "System.Reflection.nuspec",
+ "lib/aspnetcore50/System.Reflection.dll",
+ "lib/contract/System.Reflection.dll",
+ "lib/net45/System.Reflection.dll",
+ "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Reflection.dll"
+ ]
+ },
+ "System.Reflection.Primitives/4.0.0-beta-22816": {
+ "sha512": "EJwj21pXCKrEixqXZ0mcJXYwDaTMTX9csa3Gcrm9i0UwemWaUPMHU94Y3crDuvk5h+urJlm6rk8xuEXIgmTFzg==",
+ "files": [
+ "License.rtf",
+ "System.Reflection.Primitives.4.0.0-beta-22816.nupkg",
+ "System.Reflection.Primitives.4.0.0-beta-22816.nupkg.sha512",
+ "System.Reflection.Primitives.nuspec",
+ "lib/aspnetcore50/System.Reflection.Primitives.dll",
+ "lib/contract/System.Reflection.Primitives.dll",
+ "lib/net45/System.Reflection.Primitives.dll",
+ "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Reflection.Primitives.dll"
+ ]
+ },
"System.Runtime/4.0.20-beta-22927": {
"sha512": "W8n/HCb4n/qKmWohYKmCQa9PN91T92zBxkT1H+kK8OlM6BvKmlTs9XUA56em0sCF/h3wvJUXzLI0k7aBv2JgDw==",
"files": [
@@ -211,6 +397,32 @@
"runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll"
]
},
+ "System.Runtime.Handles/4.0.0-beta-22816": {
+ "sha512": "v0zgBcuEWIbjC/AXgmutaLymiHgL6dv/1T7uJVAaraFivnClvEERwihXmRCr+HH22AC1J6tbuGE0/cnhZNV6QA==",
+ "files": [
+ "License.rtf",
+ "System.Runtime.Handles.4.0.0-beta-22816.nupkg",
+ "System.Runtime.Handles.4.0.0-beta-22816.nupkg.sha512",
+ "System.Runtime.Handles.nuspec",
+ "lib/aspnetcore50/System.Runtime.Handles.dll",
+ "lib/contract/System.Runtime.Handles.dll",
+ "lib/net45/System.Runtime.Handles.dll",
+ "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Runtime.Handles.dll"
+ ]
+ },
+ "System.Runtime.InteropServices/4.0.20-beta-22816": {
+ "sha512": "MJtigFXlDXgxs8GwrKOlXdXHlNVKz4/pCiDx23NFt8cFb254DNgU5D3kxRDl+xZb74vlhgUvXMOTPLbsMaTcbA==",
+ "files": [
+ "License.rtf",
+ "System.Runtime.InteropServices.4.0.20-beta-22816.nupkg",
+ "System.Runtime.InteropServices.4.0.20-beta-22816.nupkg.sha512",
+ "System.Runtime.InteropServices.nuspec",
+ "lib/aspnetcore50/System.Runtime.InteropServices.dll",
+ "lib/contract/System.Runtime.InteropServices.dll",
+ "lib/net45/System.Runtime.InteropServices.dll",
+ "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Runtime.InteropServices.dll"
+ ]
+ },
"System.Text.Encoding/4.0.10-beta-22927": {
"sha512": "ZtyyVxaz9Z0zJrA8dwGCpnqdbg/CO5L4OH1dmLIC18ZKJScRXFJhBPbcj+l8uDDCo0grBLbQpbh6OQ5jgmcfqw==",
"files": [
@@ -239,6 +451,19 @@
"runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll"
]
},
+ "System.Threading/4.0.10-beta-22816": {
+ "sha512": "GO4X3FuGlw4DJH+UbbKDXKnyyWiwlPJIX+Ys0UCzSdAPneBA42dPb2+kRakWy+wo6n6Gcv7ckkfa3j8MSSxbhg==",
+ "files": [
+ "License.rtf",
+ "System.Threading.4.0.10-beta-22816.nupkg",
+ "System.Threading.4.0.10-beta-22816.nupkg.sha512",
+ "System.Threading.nuspec",
+ "lib/aspnetcore50/System.Threading.dll",
+ "lib/contract/System.Threading.dll",
+ "lib/net45/System.Threading.dll",
+ "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Threading.dll"
+ ]
+ },
"System.Threading.Tasks/4.0.10-beta-22927": {
"sha512": "SeUpExzifr3zENWz5oMF1M0niHwo8c3xKx3k/p5yBZnvmw7Uxrfgj/Pf5kyD50JB48EdqVJ43IhSml6tOX2ZzA==",
"files": [
@@ -343,6 +568,15 @@
"lib/portable-net45+aspnetcore50+win+wpa81+wp80/xunit.runner.utility.xml"
]
},
+ "xunit.netcore.extensions/1.0.0-prerelease-00050": {
+ "sha512": "PoQB+RKMYPWEhclcQ/n09ZbYKwRKGadgQCMkCmhQIewOiev8AcaO03yoTbO5oEEcOxHKnl3DsGffB+IZD/Z45g==",
+ "files": [
+ "xunit.netcore.extensions.1.0.0-prerelease-00050.nupkg",
+ "xunit.netcore.extensions.1.0.0-prerelease-00050.nupkg.sha512",
+ "xunit.netcore.extensions.nuspec",
+ "lib/portable-wpa80+win80+net45+aspnetcore50/Xunit.NetCore.Extensions.dll"
+ ]
+ },
"xunit.runner.visualstudio/0.99.9-build1021": {
"sha512": "W6ek3CWXplJa0Bd21yk00D6+cgZxCgWR6vTyUpq8lGcUFRAUiXi0PLxQMq2k7hFBA7epJuxHOjXfVmC+J5p9Tg==",
"files": [
@@ -373,6 +607,7 @@
"xunit.abstractions.netcore >= 1.0.0-prerelease",
"xunit.assert >= 2.0.0-beta5-build2785",
"xunit.core.netcore >= 1.0.1-prerelease",
+ "xunit.netcore.extensions >= 1.0.0-prerelease-*",
"xunit.runner.visualstudio >= 0.99.9-build1021"
],
"DNXCore,Version=v5.0": []