Skip to content

Commit

Permalink
Disable EnsureCleanEnvironment on wasm since it can't possibly work (#…
Browse files Browse the repository at this point in the history
…81893)

The related test is also skipped on CI thanks to #81860
  • Loading branch information
kg authored Feb 9, 2023
1 parent 89d35ba commit 4570167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/tracing/eventpipe/common/IpcTraceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ private int Validate(bool enableRundownProvider = true)
// the process that created them, so we don't need to check on that platform.
static public bool EnsureCleanEnvironment()
{
if (!OperatingSystem.IsWindows())
if (!OperatingSystem.IsWindows() && !OperatingSystem.IsBrowser())
{
Func<(IEnumerable<IGrouping<int,FileInfo>>, List<int>)> getPidsAndSockets = () =>
{
Expand Down

0 comments on commit 4570167

Please sign in to comment.