This pull request updates the following dependencies
[marker]: <> (Begin:
a9fe20fc-c5cb-441c-a7ce-
08dc4e3fac2f)
## From https://github.com/dotnet/runtime
- **Subscription**:
a9fe20fc-c5cb-441c-a7ce-
08dc4e3fac2f
- **Build**:
20240709.11
- **Date Produced**: July 10, 2024 9:37:07 AM UTC
- **Commit**:
c52fd37cc835a13bcfa9a64fdfe7520809a75345
- **Branch**: refs/heads/main
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.NETCore.App.Runtime.win-x64**: [from
9.0.0-preview.6.24307.2 to 9.0.0-preview.7.24359.11][25]
- **VS.Redist.Common.NetCore.SharedFramework.x64.9.0**: [from
9.0.0-preview.6.24307.2 to 9.0.0-preview.7.24359.11][25]
[25]: https://github.com/dotnet/runtime/compare/
8fac5af2b1...
c52fd37cc8
[DependencyUpdate]: <> (End)
[marker]: <> (End:
a9fe20fc-c5cb-441c-a7ce-
08dc4e3fac2f)
---------
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Mike McLaughlin <mikem@microsoft.com>
<Uri>https://github.com/dotnet/aspnetcore</Uri>
<Sha>c52c28458e86029555bf1a88e94b64e7f37ef6d3</Sha>
</Dependency>
- <Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="9.0.0-preview.6.24307.2">
+ <Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="9.0.0-preview.7.24359.11">
<Uri>https://github.com/dotnet/runtime</Uri>
- <Sha>8fac5af2b11dc98fa0504f6fd06df790164ec958</Sha>
+ <Sha>c52fd37cc835a13bcfa9a64fdfe7520809a75345</Sha>
</Dependency>
- <Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.9.0" Version="9.0.0-preview.6.24307.2">
+ <Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.9.0" Version="9.0.0-preview.7.24359.11">
<Uri>https://github.com/dotnet/runtime</Uri>
- <Sha>8fac5af2b11dc98fa0504f6fd06df790164ec958</Sha>
+ <Sha>c52fd37cc835a13bcfa9a64fdfe7520809a75345</Sha>
</Dependency>
<!-- Intermediate is necessary for source build. -->
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="9.0.0-alpha.1.24358.1">
</PropertyGroup>
<PropertyGroup>
<!-- Latest shared runtime version updated by darc -->
- <VSRedistCommonNetCoreSharedFrameworkx6490Version>9.0.0-preview.6.24307.2</VSRedistCommonNetCoreSharedFrameworkx6490Version>
- <MicrosoftNETCoreAppRuntimewinx64Version>9.0.0-preview.6.24307.2</MicrosoftNETCoreAppRuntimewinx64Version>
+ <VSRedistCommonNetCoreSharedFrameworkx6490Version>9.0.0-preview.7.24359.11</VSRedistCommonNetCoreSharedFrameworkx6490Version>
+ <MicrosoftNETCoreAppRuntimewinx64Version>9.0.0-preview.7.24359.11</MicrosoftNETCoreAppRuntimewinx64Version>
<!-- Latest shared aspnetcore version updated by darc -->
<MicrosoftAspNetCoreAppRefInternalVersion>9.0.0-preview.7.24359.10</MicrosoftAspNetCoreAppRefInternalVersion>
<MicrosoftAspNetCoreAppRefVersion>9.0.0-preview.7.24359.10</MicrosoftAspNetCoreAppRefVersion>
MOVE (stackTraceSize, dataPtr);
DWORD cbStackSize = static_cast<DWORD>(stackTraceSize * sizeof(StackTraceElement));
- dataPtr += sizeof(size_t) + sizeof(size_t); // skip the array header, then goes the data
+
+ if (IsRuntimeVersionAtLeast(9))
+ {
+ dataPtr += sizeof(uint32_t) + sizeof(uint32_t) + sizeof(DWORD_PTR); // skip the 9.0 array header
+ }
+ else
+ {
+ dataPtr += sizeof(size_t) + sizeof(DWORD_PTR); // skip the array header, then goes the data
+ }
if (stackTraceSize == 0)
{
/// Tests that the trigger condition can be detected on a live application
/// using the EventPipeTriggerPipeline.
/// </summary>
- [SkippableTheory, MemberData(nameof(Configurations))]
+ [SkippableTheory(Skip = "https://github.com/dotnet/diagnostics/issues/4782"), MemberData(nameof(Configurations))]
public async Task EventCounterTriggerWithEventPipePipelineTest(TestConfiguration config)
{
if (config.RuntimeFrameworkVersionMajor < 6)
/// Test that log events are collected for the categories and levels specified by the application
/// and for the categories and levels specified in the filter specs.
/// </summary>
- [SkippableTheory, MemberData(nameof(Configurations))]
+ [SkippableTheory(Skip = "https://github.com/dotnet/diagnostics/issues/4718"), MemberData(nameof(Configurations))]
public async Task TestLogsUseAppFiltersAndFilterSpecs(TestConfiguration config)
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
using System.Collections.Generic;
using System.Diagnostics.Tracing;
using System.IO;
-using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Diagnostics.TestHelpers;
using Microsoft.Diagnostics.Tracing;
using Microsoft.Diagnostics.Tracing.Etlx;
-using Microsoft.Diagnostics.Tracing.Session;
using Xunit;
using Xunit.Abstractions;
using Xunit.Extensions;
streamTask.Wait(10000);
runner.WriteLine("Done waiting for stream Task");
- Assert.True(evntCnt > 0);
+ Assert.True(Volatile.Read(ref evntCnt) > 0);
}
}
runner.Stop();
}
- [SkippableTheory, MemberData(nameof(Configurations))]
+ [SkippableTheory(Skip = "https://github.com/dotnet/diagnostics/issues/4717"), MemberData(nameof(Configurations))]
public async Task StartEventPipeSessionWithoutStackwalkTestAsync(TestConfiguration testConfig)
{
if (testConfig.RuntimeFrameworkVersionMajor < 9)