From e10da01d6557be2238ab55218f947001a3b35e57 Mon Sep 17 00:00:00 2001 From: Santiago Fernandez Madero Date: Wed, 29 Jul 2020 02:55:56 -0700 Subject: [PATCH] WASM: Enable GetAssemblyNameTest_ValidAssembly and add hook to include custom files into vfs (#40032) --- eng/testing/tests.mobile.targets | 15 ++------------- .../tests/System.Reflection.Metadata.Tests.csproj | 3 +++ .../System.Reflection.MetadataLoadContext.Tests.csproj | 5 +++++ .../tests/System.Reflection.Tests.csproj | 4 ++++ .../tests/AssemblyLoadContextTest.cs | 1 - .../tests/System.Runtime.Loader.Tests.csproj | 3 +++ 6 files changed, 17 insertions(+), 14 deletions(-) diff --git a/eng/testing/tests.mobile.targets b/eng/testing/tests.mobile.targets index c69aa63..84b8337 100644 --- a/eng/testing/tests.mobile.targets +++ b/eng/testing/tests.mobile.targets @@ -132,24 +132,13 @@ + + - - - - - - - - - - - - - + + + \ No newline at end of file diff --git a/src/libraries/System.Reflection.MetadataLoadContext/tests/System.Reflection.MetadataLoadContext.Tests.csproj b/src/libraries/System.Reflection.MetadataLoadContext/tests/System.Reflection.MetadataLoadContext.Tests.csproj index 68a69ab..1703956fc 100644 --- a/src/libraries/System.Reflection.MetadataLoadContext/tests/System.Reflection.MetadataLoadContext.Tests.csproj +++ b/src/libraries/System.Reflection.MetadataLoadContext/tests/System.Reflection.MetadataLoadContext.Tests.csproj @@ -74,4 +74,9 @@ + + + + + diff --git a/src/libraries/System.Reflection/tests/System.Reflection.Tests.csproj b/src/libraries/System.Reflection/tests/System.Reflection.Tests.csproj index f96a355..8db00f6 100644 --- a/src/libraries/System.Reflection/tests/System.Reflection.Tests.csproj +++ b/src/libraries/System.Reflection/tests/System.Reflection.Tests.csproj @@ -64,4 +64,8 @@ + + + + diff --git a/src/libraries/System.Runtime.Loader/tests/AssemblyLoadContextTest.cs b/src/libraries/System.Runtime.Loader/tests/AssemblyLoadContextTest.cs index 290cb3c..3979d76 100644 --- a/src/libraries/System.Runtime.Loader/tests/AssemblyLoadContextTest.cs +++ b/src/libraries/System.Runtime.Loader/tests/AssemblyLoadContextTest.cs @@ -18,7 +18,6 @@ namespace System.Runtime.Loader.Tests private const string TestAssemblyNotSupported = "System.Runtime.Loader.Test.AssemblyNotSupported"; [Fact] - [ActiveIssue("https://github.com/dotnet/runtime/issues/39379", TestPlatforms.Browser)] public static void GetAssemblyNameTest_ValidAssembly() { var expectedName = typeof(AssemblyLoadContextTest).Assembly.GetName(); diff --git a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Tests.csproj b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Tests.csproj index c595a1c..f43714d 100644 --- a/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Tests.csproj +++ b/src/libraries/System.Runtime.Loader/tests/System.Runtime.Loader.Tests.csproj @@ -30,4 +30,7 @@ + + + \ No newline at end of file -- 2.7.4