Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tmat committed Aug 3, 2022
1 parent 57f710d commit 9bf2b85
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,7 @@ public void AllWellKnownTypes()
case WellKnownType.System_MemoryExtensions:
case WellKnownType.System_Runtime_CompilerServices_CompilerFeatureRequiredAttribute:
case WellKnownType.System_Diagnostics_CodeAnalysis_UnscopedRefAttribute:
case WellKnownType.System_Runtime_CompilerServices_MetadataUpdateOriginalTypeAttribute:
// Not yet in the platform.
continue;
case WellKnownType.Microsoft_CodeAnalysis_Runtime_Instrumentation:
Expand Down Expand Up @@ -983,6 +984,7 @@ public void AllWellKnownTypeMembers()
case WellKnownMember.System_MemoryExtensions__AsSpan_String:
case WellKnownMember.System_Runtime_CompilerServices_CompilerFeatureRequiredAttribute__ctor:
case WellKnownMember.System_Diagnostics_CodeAnalysis_UnscopedRefAttribute__ctor:
case WellKnownMember.System_Runtime_CompilerServices_MetadataUpdateOriginalTypeAttribute__ctor:
// Not yet in the platform.
continue;
case WellKnownMember.Microsoft_CodeAnalysis_Runtime_Instrumentation__CreatePayloadForMethodsSpanningSingleFile:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,8 @@ End Namespace
WellKnownType.System_Runtime_CompilerServices_CompilerFeatureRequiredAttribute,
WellKnownType.System_Runtime_CompilerServices_ScopedRefAttribute,
WellKnownType.System_Diagnostics_CodeAnalysis_UnscopedRefAttribute,
WellKnownType.System_MemoryExtensions
WellKnownType.System_MemoryExtensions,
WellKnownType.System_Runtime_CompilerServices_MetadataUpdateOriginalTypeAttribute
' Not available on all platforms.
Continue For
Case WellKnownType.ExtSentinel
Expand Down Expand Up @@ -625,7 +626,8 @@ End Namespace
WellKnownType.System_MemoryExtensions,
WellKnownType.System_Runtime_CompilerServices_CompilerFeatureRequiredAttribute,
WellKnownType.System_Runtime_CompilerServices_ScopedRefAttribute,
WellKnownType.System_Diagnostics_CodeAnalysis_UnscopedRefAttribute
WellKnownType.System_Diagnostics_CodeAnalysis_UnscopedRefAttribute,
WellKnownType.System_Runtime_CompilerServices_MetadataUpdateOriginalTypeAttribute
' Not available on all platforms.
Continue For
Case WellKnownType.ExtSentinel
Expand Down Expand Up @@ -722,7 +724,8 @@ End Namespace
WellKnownMember.System_MemoryExtensions__SequenceEqual_ReadOnlySpan_T,
WellKnownMember.System_MemoryExtensions__AsSpan_String,
WellKnownMember.System_Runtime_CompilerServices_CompilerFeatureRequiredAttribute__ctor,
WellKnownMember.System_Diagnostics_CodeAnalysis_UnscopedRefAttribute__ctor
WellKnownMember.System_Diagnostics_CodeAnalysis_UnscopedRefAttribute__ctor,
WellKnownMember.System_Runtime_CompilerServices_MetadataUpdateOriginalTypeAttribute__ctor
' Not available yet, but will be in upcoming release.
Continue For
Case WellKnownMember.Microsoft_CodeAnalysis_Runtime_Instrumentation__CreatePayloadForMethodsSpanningSingleFile,
Expand Down Expand Up @@ -875,7 +878,8 @@ End Namespace
WellKnownMember.System_MemoryExtensions__SequenceEqual_ReadOnlySpan_T,
WellKnownMember.System_MemoryExtensions__AsSpan_String,
WellKnownMember.System_Runtime_CompilerServices_CompilerFeatureRequiredAttribute__ctor,
WellKnownMember.System_Diagnostics_CodeAnalysis_UnscopedRefAttribute__ctor
WellKnownMember.System_Diagnostics_CodeAnalysis_UnscopedRefAttribute__ctor,
WellKnownMember.System_Runtime_CompilerServices_MetadataUpdateOriginalTypeAttribute__ctor
' Not available yet, but will be in upcoming release.
Continue For
Case WellKnownMember.Microsoft_CodeAnalysis_Runtime_Instrumentation__CreatePayloadForMethodsSpanningSingleFile,
Expand Down

0 comments on commit 9bf2b85

Please sign in to comment.