This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged PR 15906: Fixes conflicts in configurecompiler.cmake
- Loading branch information
Showing
6 changed files
with
165 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
#if USE_MDT_EVENTSOURCE | ||
using Microsoft.Diagnostics.Tracing; | ||
#else | ||
using System.Diagnostics.Tracing; | ||
#endif | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using System.Diagnostics; | ||
|
||
namespace gh53564Tests | ||
{ | ||
public class RuntimeCounterListener : EventListener | ||
{ | ||
public RuntimeCounterListener(){} | ||
|
||
private DateTime? setToZeroTimestamp = null; | ||
private DateTime? mostRecentTimestamp = null; | ||
private ManualResetEvent setToZero = new ManualResetEvent(initialState: false); | ||
public ManualResetEvent ReadyToVerify { get; } = new ManualResetEvent(initialState: false); | ||
|
||
protected override void OnEventSourceCreated(EventSource source) | ||
{ | ||
if (source.Name.Equals("System.Runtime")) | ||
{ | ||
Dictionary<string, string> refreshInterval = new Dictionary<string, string>(); | ||
|
||
Console.WriteLine($"[{DateTime.UtcNow:hh:mm:ss.fff}] OnEventSourceCreated :: Setting interval to 1"); | ||
// first set interval to 1 seconds | ||
refreshInterval["EventCounterIntervalSec"] = "1"; | ||
EnableEvents(source, EventLevel.Informational, (EventKeywords)(-1), refreshInterval); | ||
|
||
// wait a moment to get some events | ||
Thread.Sleep(TimeSpan.FromSeconds(3)); | ||
|
||
// then set interval to 0 | ||
Console.WriteLine($"[{DateTime.UtcNow:hh:mm:ss.fff}] OnEventSourceCreated :: Setting interval to 0"); | ||
refreshInterval["EventCounterIntervalSec"] = "0"; | ||
EnableEvents(source, EventLevel.Informational, (EventKeywords)(-1), refreshInterval); | ||
setToZeroTimestamp = DateTime.UtcNow + TimeSpan.FromSeconds(1); // Stash timestamp 1 second after setting to 0 | ||
setToZero.Set(); | ||
|
||
// then attempt to set interval back to 1 | ||
Thread.Sleep(TimeSpan.FromSeconds(3)); | ||
Console.WriteLine($"[{DateTime.UtcNow:hh:mm:ss.fff}] OnEventSourceCreated :: Setting interval to 1"); | ||
refreshInterval["EventCounterIntervalSec"] = "1"; | ||
EnableEvents(source, EventLevel.Informational, (EventKeywords)(-1), refreshInterval); | ||
} | ||
} | ||
|
||
protected override void OnEventWritten(EventWrittenEventArgs eventData) | ||
{ | ||
if (!ReadyToVerify.WaitOne(0)) | ||
{ | ||
mostRecentTimestamp = eventData.TimeStamp; | ||
if (setToZero.WaitOne(0) && mostRecentTimestamp > setToZeroTimestamp) | ||
{ | ||
Console.WriteLine($"[{DateTime.UtcNow:hh:mm:ss.fff}] OnEventWritten :: Setting ReadyToVerify"); | ||
ReadyToVerify.Set(); | ||
} | ||
} | ||
} | ||
|
||
public bool Verify() | ||
{ | ||
if (!ReadyToVerify.WaitOne(0)) | ||
return false; | ||
|
||
Console.WriteLine($"[{DateTime.UtcNow:hh:mm:ss.fff}] Verify :: Verifying"); | ||
Console.WriteLine($"[{DateTime.UtcNow:hh:mm:ss.fff}] setToZeroTimestamp = {setToZeroTimestamp?.ToString("hh:mm:ss.fff") ?? "NULL"}"); | ||
Console.WriteLine($"[{DateTime.UtcNow:hh:mm:ss.fff}] mostRecentTimestamp = {mostRecentTimestamp?.ToString("hh:mm:ss.fff") ?? "NULL"}"); | ||
|
||
return (setToZeroTimestamp is null || mostRecentTimestamp is null) ? false : setToZeroTimestamp < mostRecentTimestamp; | ||
} | ||
} | ||
|
||
public partial class TestRuntimeEventCounter | ||
{ | ||
public static int Main(string[] args) | ||
{ | ||
// Create an EventListener. | ||
using (RuntimeCounterListener myListener = new RuntimeCounterListener()) | ||
{ | ||
if (myListener.ReadyToVerify.WaitOne(TimeSpan.FromSeconds(30))) | ||
{ | ||
if (myListener.Verify()) | ||
{ | ||
Console.WriteLine("Test passed"); | ||
return 100; | ||
} | ||
else | ||
{ | ||
Console.WriteLine($"Test Failed - did not see one or more of the expected runtime counters."); | ||
return 1; | ||
} | ||
} | ||
else | ||
{ | ||
Console.WriteLine("Test Failed - timed out waiting for reset"); | ||
return 1; | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>{8E3244CB-407F-4142-BAAB-E7A55901A5FA}</ProjectGuid> | ||
<OutputType>Exe</OutputType> | ||
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir> | ||
<CLRTestKind>BuildAndRun</CLRTestKind> | ||
<DefineConstants>$(DefineConstants);STATIC</DefineConstants> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<CLRTestPriority>0</CLRTestPriority> | ||
<GCStressIncompatible>true</GCStressIncompatible> | ||
<!-- This test has a secondary thread with an infinite loop --> | ||
<UnloadabilityIncompatible>true</UnloadabilityIncompatible> | ||
</PropertyGroup> | ||
<!-- Default configurations to help VS understand the configurations --> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="gh53564.cs" /> | ||
<ProjectReference Include="../common/common.csproj" /> | ||
</ItemGroup> | ||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" /> | ||
</Project> | ||
|