-
Notifications
You must be signed in to change notification settings - Fork 150
Increase debugger serialize timeout for unit tests #7769
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
|
andrewlock
left a comment
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.
Thanks!
Execution-Time Benchmarks Report ⏱️Execution-time results for samples comparing This PR (7769) and master. ✅ No regressions detected - check the details below Full Metrics ComparisonFakeDbCommand
HttpMessageHandler
Comparison explanationExecution-time benchmarks measure the whole time it takes to execute a program, and are intended to measure the one-off costs. Cases where the execution time results for the PR are worse than latest master results are highlighted in **red**. The following thresholds were used for comparing the execution times:
Note that these results are based on a single point-in-time result for each branch. For full results, see the dashboard. Graphs show the p99 interval based on the mean and StdDev of the test run, as well as the mean value of the run (shown as a diamond below the graph). Duration chartsFakeDbCommand (.NET Framework 4.8)gantt
title Execution time (ms) FakeDbCommand (.NET Framework 4.8)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7769) - mean (68ms) : 67, 70
master - mean (68ms) : 67, 69
section Bailout
This PR (7769) - mean (72ms) : 71, 73
master - mean (72ms) : 70, 73
section CallTarget+Inlining+NGEN
This PR (7769) - mean (1,062ms) : 980, 1145
master - mean (1,051ms) : 1002, 1099
FakeDbCommand (.NET Core 3.1)gantt
title Execution time (ms) FakeDbCommand (.NET Core 3.1)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7769) - mean (107ms) : 104, 109
master - mean (106ms) : 104, 108
section Bailout
This PR (7769) - mean (107ms) : 106, 108
master - mean (107ms) : 105, 108
section CallTarget+Inlining+NGEN
This PR (7769) - mean (758ms) : 725, 791
master - mean (749ms) : 727, 772
FakeDbCommand (.NET 6)gantt
title Execution time (ms) FakeDbCommand (.NET 6)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7769) - mean (94ms) : 93, 96
master - mean (94ms) : 92, 96
section Bailout
This PR (7769) - mean (95ms) : 94, 96
master - mean (94ms) : 93, 95
section CallTarget+Inlining+NGEN
This PR (7769) - mean (709ms) : 668, 750
master - mean (718ms) : 665, 771
FakeDbCommand (.NET 8)gantt
title Execution time (ms) FakeDbCommand (.NET 8)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7769) - mean (93ms) : 91, 95
master - mean (92ms) : 90, 95
section Bailout
This PR (7769) - mean (94ms) : 92, 95
master - mean (93ms) : 92, 94
section CallTarget+Inlining+NGEN
This PR (7769) - mean (673ms) : 653, 692
master - mean (670ms) : 651, 689
HttpMessageHandler (.NET Framework 4.8)gantt
title Execution time (ms) HttpMessageHandler (.NET Framework 4.8)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7769) - mean (193ms) : 188, 197
master - mean (192ms) : 188, 197
section Bailout
This PR (7769) - mean (196ms) : 193, 198
master - mean (195ms) : 192, 199
section CallTarget+Inlining+NGEN
This PR (7769) - mean (1,167ms) : 1092, 1243
master - mean (1,171ms) : 1101, 1241
HttpMessageHandler (.NET Core 3.1)gantt
title Execution time (ms) HttpMessageHandler (.NET Core 3.1)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7769) - mean (276ms) : 271, 281
master - mean (275ms) : 270, 280
section Bailout
This PR (7769) - mean (276ms) : 271, 280
master - mean (276ms) : 272, 280
section CallTarget+Inlining+NGEN
This PR (7769) - mean (942ms) : 896, 987
master - mean (951ms) : 904, 999
HttpMessageHandler (.NET 6)gantt
title Execution time (ms) HttpMessageHandler (.NET 6)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7769) - mean (269ms) : 263, 276
master - mean (269ms) : 263, 274
section Bailout
This PR (7769) - mean (270ms) : 264, 276
master - mean (269ms) : 265, 272
section CallTarget+Inlining+NGEN
This PR (7769) - mean (916ms) : 869, 963
master - mean (934ms) : 870, 998
HttpMessageHandler (.NET 8)gantt
title Execution time (ms) HttpMessageHandler (.NET 8)
dateFormat x
axisFormat %Q
todayMarker off
section Baseline
This PR (7769) - mean (268ms) : 264, 272
master - mean (268ms) : 264, 272
section Bailout
This PR (7769) - mean (268ms) : 265, 271
master - mean (268ms) : 265, 271
section CallTarget+Inlining+NGEN
This PR (7769) - mean (848ms) : 826, 870
master - mean (852ms) : 837, 867
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Summary of changes
We have detected the following error in the CI in some debugger unit tests:
The proposed solution is to increase the timeout:
ConfigurationKeys.Debugger.MaxTimeToSerialize, "1000"
The error could be reproduced locally by setting this config value to 1, which confirms that this solution should work.
In other tests (debugger integration tests), we are already setting this value to 1000.
Reason for change
Implementation details
Test coverage
Other details