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
path: root/src
diff options
context:
space:
mode:
authorJose Perez Rodriguez <joperezr@microsoft.com>2017-08-07 21:54:12 +0300
committerJose Perez Rodriguez <joperezr@microsoft.com>2017-08-07 21:54:12 +0300
commit1975bd1d63a7bc620d999dad7b3e565b6db0458f (patch)
treed8dbb92a66c0a5702b1d817a067eca4b5c7773a4 /src
parent525d6ae50fa8f982ac186083e9dc8563fe50e7a0 (diff)
Reverting version of TestILC + fixes on Globalization tests
Diffstat (limited to 'src')
-rw-r--r--src/System.Globalization/tests/CultureInfo/CultureInfoDateTimeFormat.cs3
-rw-r--r--src/System.Globalization/tests/NumberFormatInfo/NumberFormatInfoCurrentInfo.cs9
-rw-r--r--src/System.Globalization/tests/System.Globalization.Tests.csproj2
3 files changed, 1 insertions, 13 deletions
diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoDateTimeFormat.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoDateTimeFormat.cs
index f584f78e03..c10e86d654 100644
--- a/src/System.Globalization/tests/CultureInfo/CultureInfoDateTimeFormat.cs
+++ b/src/System.Globalization/tests/CultureInfo/CultureInfoDateTimeFormat.cs
@@ -35,9 +35,6 @@ namespace System.Globalization.Tests
[Fact]
public void TestSettingThreadCultures()
{
- if (PlatformDetection.IsNetNative && !PlatformDetection.IsWinRT) // Tide us over until .Net Native ILC tests run are run inside an appcontainer.
- return;
-
RemoteInvoke(() =>
{
CultureInfo culture = new CultureInfo("ja-JP");
diff --git a/src/System.Globalization/tests/NumberFormatInfo/NumberFormatInfoCurrentInfo.cs b/src/System.Globalization/tests/NumberFormatInfo/NumberFormatInfoCurrentInfo.cs
index 5bb18223c5..52570de47e 100644
--- a/src/System.Globalization/tests/NumberFormatInfo/NumberFormatInfoCurrentInfo.cs
+++ b/src/System.Globalization/tests/NumberFormatInfo/NumberFormatInfoCurrentInfo.cs
@@ -21,9 +21,6 @@ namespace System.Globalization.Tests
[MemberData(nameof(CurrentInfo_CustomCulture_TestData))]
public void CurrentInfo_CustomCulture(CultureInfo newCurrentCulture)
{
- if (PlatformDetection.IsNetNative && !PlatformDetection.IsWinRT) // Tide us over until .Net Native ILC tests run are run inside an appcontainer.
- return;
-
RemoteInvoke((cultureName) =>
{
CultureInfo newCulture = new CultureInfo(cultureName);
@@ -36,9 +33,6 @@ namespace System.Globalization.Tests
[Fact]
public void CurrentInfo_Subclass_OverridesGetFormat()
{
- if (PlatformDetection.IsNetNative && !PlatformDetection.IsWinRT) // Tide us over until .Net Native ILC tests run are run inside an appcontainer.
- return;
-
RemoteInvoke(() =>
{
CultureInfo.CurrentCulture = new CultureInfoSubclassOverridesGetFormat("en-US");
@@ -50,9 +44,6 @@ namespace System.Globalization.Tests
[Fact]
public void CurrentInfo_Subclass_OverridesNumberFormat()
{
- if (PlatformDetection.IsNetNative && !PlatformDetection.IsWinRT) // Tide us over until .Net Native ILC tests run are run inside an appcontainer.
- return;
-
RemoteInvoke(() =>
{
CultureInfo.CurrentCulture = new CultureInfoSubclassOverridesNumberFormat("en-US");
diff --git a/src/System.Globalization/tests/System.Globalization.Tests.csproj b/src/System.Globalization/tests/System.Globalization.Tests.csproj
index dde763ee8b..c19f1cf8ee 100644
--- a/src/System.Globalization/tests/System.Globalization.Tests.csproj
+++ b/src/System.Globalization/tests/System.Globalization.Tests.csproj
@@ -140,7 +140,7 @@
<Compile Include="$(CommonTestPath)\System\RandomDataGenerator.cs">
<Link>Common\System\RandomDataGenerator.cs</Link>
</Compile>
- <ProjectReference Condition="'$(TargetGroup)' != 'uap'" Include="$(CommonTestPath)\System\Diagnostics\RemoteExecutorConsoleApp\RemoteExecutorConsoleApp.csproj">
+ <ProjectReference Include="$(CommonTestPath)\System\Diagnostics\RemoteExecutorConsoleApp\RemoteExecutorConsoleApp.csproj">
<Project>{69e46a6f-9966-45a5-8945-2559fe337827}</Project>
<Name>RemoteExecutorConsoleApp</Name>
</ProjectReference>