Skip to content

Commit

Permalink
[netcore] Set flag for processor arch when parsing assembly names
Browse files Browse the repository at this point in the history
  • Loading branch information
CoffeeFlux authored and marek-safar committed Aug 7, 2019
1 parent fe0f311 commit 022fc4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 4 additions & 0 deletions mono/metadata/assembly.c
Expand Up @@ -3528,6 +3528,10 @@ mono_assembly_name_parse_full (const char *name, MonoAssemblyName *aname, gboole
goto cleanup_and_fail;
}

#ifdef ENABLE_NETCORE
flags |= arch << 4;
#endif

g_free (procarch_uq);
tmp++;
continue;
Expand Down
4 changes: 0 additions & 4 deletions netcore/CoreFX.issues.rsp
Expand Up @@ -369,10 +369,6 @@
# https://github.com/mono/mono/issues/15037
-nomethod System.Reflection.Tests.ParameterInfoTests.RawDefaultValueFromAttribute

# Need to set ProcessorArchitecture in AssemblyName
# https://github.com/mono/mono/issues/15068
-nomethod System.Reflection.Tests.AssemblyNameTests.Ctor_ValidArchitectureName_Succeeds

# SKIPPED
-nomethod System.Reflection.Tests.MemberInfoNetCoreAppTests.HasSameMetadataDefinitionAs__CornerCase_HasElementTypes

Expand Down

0 comments on commit 022fc4e

Please sign in to comment.