Skip to content

Commit

Permalink
Skip EventSource tests if process is not elevated (#99261)
Browse files Browse the repository at this point in the history
  • Loading branch information
davmason authored Mar 5, 2024
1 parent b020042 commit f84d33c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

using Microsoft.Diagnostics.Tracing;
using Microsoft.Diagnostics.Tracing.Session;
using Microsoft.DotNet.XUnitExtensions;
using System;
using System.Collections.Generic;
using System.Diagnostics;
Expand Down Expand Up @@ -39,7 +40,7 @@ public EtwListener(string dataFileName = "EventSourceTestData.etl", string sessi
// Today you have to be Admin to turn on ETW events (anyone can write ETW events).
if (TraceEventSession.IsElevated() != true)
{
throw new Exception("Need to be elevated to run. ");
throw new SkipTestException("Need to be elevated to run. ");
}

if (dataFileName == null)
Expand Down

0 comments on commit f84d33c

Please sign in to comment.