Skip to content

Commit

Permalink
Increase timeout in profiler multiple test (#99014)
Browse files Browse the repository at this point in the history
  • Loading branch information
davmason authored Feb 28, 2024
1 parent 8303e25 commit 81f0e34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/profiler/multiple/multiple.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ public static int RunTest(String[] args)
}

Console.WriteLine("Waiting for profilers to all detach");
if (!_profilerDone.WaitOne(TimeSpan.FromMinutes(5)))
if (!_profilerDone.WaitOne(TimeSpan.FromMinutes(10)))
{
Console.WriteLine("Profiler did not set the callback, test will fail.");
Console.WriteLine("Test timed out waiting for the profilers to set the callback, test will fail.");
}

return 100;
Expand Down

0 comments on commit 81f0e34

Please sign in to comment.