-
Notifications
You must be signed in to change notification settings - Fork 5k
Apple Silicon reenable 49110 failures #52195
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
Conversation
Tagging subscribers to this area: @Anipik, @safern, @ViktorHofer Issue DetailsThese issues were likely fixed in CI by dotnet/core-eng#12776 Fixes #49110
|
@@ -299,56 +299,6 @@ | |||
<!-- ActiveIssue Apple Silicon No usable version of libssl was found https://github.com/dotnet/runtime/issues/49083 --> | |||
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Security.Cryptography.Algorithms/tests/System.Security.Cryptography.Algorithms.Tests.csproj" /> | |||
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Security.Cryptography.OpenSsl/tests/System.Security.Cryptography.OpenSsl.Tests.csproj" /> | |||
<!-- ActiveIssue XUnit crashes on Apple Silicon https://github.com/dotnet/runtime/issues/49110 --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could all these that were crashing uncover other test failures? Let's make sure before merging that the build is still green.
/azp run runtime-libraries-coreclr outerloop-osx |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-libraries-coreclr outerloop-osx |
Azure Pipelines successfully started running 1 pipeline(s). |
Runtime staging https://dev.azure.com/dnceng/public/_build/results?buildId=1119668&view=results had three libraries innerloop failures. |
@sdmaclea does this need a rerun or do you think these weren't fixed by dotnet/core-eng#12776? |
These weren't fixed by dotnet/core-eng#12776. Unfortunately most of these issues do not reproduce (easily?) locally anymore. The original runs didn't generate core dumps. The coredumps have since been fixed. I planned to rebase and rerun these to see if we could get some more info. |
Rebased and manually triggered https://dev.azure.com/dnceng/public/_build/results?buildId=1176673&view=results |
/azp run runtime-libraries-coreclr outerloop-osx |
Azure Pipelines successfully started running 1 pipeline(s). |
There are some coredumps for a bus error and a segmentation fault https://dev.azure.com/dnceng/public/_build/results?buildId=1176673 There is also this interesting delegate test failure Starting: System.Runtime.Tests (parallel test collections = on, max threads = 8)
System.Tests.DelegateTests.DynamicInvoke_DefaultParameter_AllPrimitiveParametersWithSomeExplicitValues [FAIL]
Assert.Equal() Failure
↓ (pos 38)
Expected: ··· -101, -3, 104, -5, 106, -7, 108, 9.1, 111.12
Actual: ··· -101, -3, 104, -5, 4294967291, -7, 108, 9.1, 111.12
↑ (pos 38)
Stack Trace:
/_/src/libraries/System.Runtime/tests/System/DelegateTests.cs(253,0): at System.Tests.DelegateTests.DynamicInvoke_DefaultParameter_AllPrimitiveParametersWithSomeExplicitValues()
System.Tests.DelegateTests.DynamicInvoke_DefaultParameter_AllPrimitiveParametersWithMissingValues [FAIL]
Assert.Equal() Failure
↓ (pos 33)
Expected: ···, 2, -1, -3, 4, -5, 6, -7, 8, 9.1, 11.12
Actual: ···, 2, -1, -3, 4, -5, 4294967291, -7, 8, 9.1, 11.12
↑ (pos 33)
System.Tests.DelegateTests.DynamicInvoke_DefaultParameter_AllPrimitiveParametersWithAllExplicitValues [FAIL]
Assert.Equal() Failure
↓ (pos 45)
Expected: ···1, -103, 104, -105, 106, -107, 108, 109.1, 111.12
Actual: ···1, -103, 104, -105, 4294967191, -107, 108, 109.1, 111.12
↑ (pos 45)
Stack Trace:
/_/src/libraries/System.Runtime/tests/System/DelegateTests.cs(228,0): at System.Tests.DelegateTests.DynamicInvoke_DefaultParameter_AllPrimitiveParametersWithAllExplicitValues() Looks like an ABI issue which was covered by the disabled tests. Perhaps it was fixed by #53250 which was merged after this was triggered. Or perhaps it is an instance of the XUnit test data getting corrupted since the same bad data occurs in three separate tests. |
This run the same test suites failed. https://dev.azure.com/dnceng/public/_build/results?buildId=1177129 But the interesting case is gone. Perhaps it is fixed or intermittent. |
System.Numerics.Vectors & System.Runtime both failed for both runs. Restore disables of these tests.
/azp run runtime-libraries-coreclr outerloop-osx |
Azure Pipelines successfully started running 1 pipeline(s). |
These issues were likely fixed in CI by dotnet/core-eng#12776
Fixes #49110