-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Add additional round-trip fixes and add additional unit tests for greater code coverage #133188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
91b5075
51b127f
08a9e55
b8c809b
732f07c
13fa716
7c38c9e
47b11aa
2e63612
f9e27b7
7f45c5a
71a2e3f
a1196aa
8562cc7
839ffab
0a12521
fdda553
462d27d
2e3c055
94bc156
18c7f4b
9bf1465
57c3fcc
9685c8a
b05dadd
ca2cf80
c670b93
8f2232b
2341314
d03ddfa
6482030
f63ca1e
1368023
b6f9897
7133365
10a0cf7
e8d65fb
89f3243
45bf714
78a7fc6
6e7393f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| <Project> | ||
| <PropertyGroup> | ||
| <ServerGarbageCollection>true</ServerGarbageCollection> | ||
| <TieredCompilation>false</TieredCompilation> | ||
| <EventSourceSupport>true</EventSourceSupport> | ||
| <OptimizationPreference>Speed</OptimizationPreference> | ||
| <ControlFlowGuard>Guard</ControlFlowGuard> | ||
| <InvariantGlobalization>true</InvariantGlobalization> | ||
| <StripSymbols Condition="'$(KeepNativeSymbols)' == 'true'">false</StripSymbols> | ||
| <XmlResolverIsNetworkingEnabledByDefault>false</XmlResolverIsNetworkingEnabledByDefault> | ||
| <StackTraceLineNumberSupport>true</StackTraceLineNumberSupport> | ||
| </PropertyGroup> | ||
| </Project> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,8 @@ | |
| <CLRTestPriority>1</CLRTestPriority> | ||
| <!-- Test relies on tls support see #2441 --> | ||
| <DisableProjectBuild>true</DisableProjectBuild> | ||
| <!-- Managed ilasm does not support TLS RVA data declarations. --> | ||
| <ManagedIlasmRoundTripIncompatible>true</ManagedIlasmRoundTripIncompatible> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be permanent disable? I thought we have said that we won't support this in managed ilasm
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My plan was to convert the tests to C++/CLI in #133533 so we don't need to support it here and can remove this disable. |
||
| </PropertyGroup> | ||
| <PropertyGroup> | ||
| <DebugType>PdbOnly</DebugType> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,8 @@ | |
| <PropertyGroup> | ||
| <DebugType>Full</DebugType> | ||
| <Optimize>False</Optimize> | ||
| <!-- Managed ilasm consumes excessive amount of memory --> | ||
| <ManagedIlasmRoundTripIncompatible>true</ManagedIlasmRoundTripIncompatible> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like HugeField2 needs skipping too (failed in CI) |
||
| </PropertyGroup> | ||
| <ItemGroup> | ||
| <Compile Include="HugeField1.cs" /> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.