From 35f939165dbb0f04f801a64ca2c7a2575b2ce20f Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 12 Aug 2020 23:55:49 +0200 Subject: [PATCH] Don't sleep in test application's fibonacci thread. --- test/test.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test.cpp b/test/test.cpp index 3b3199d5..1d972511 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -176,7 +176,6 @@ void DepthTest() tracy::SetThreadName( "Depth test" ); for(;;) { - std::this_thread::sleep_for( std::chrono::milliseconds( 20 ) ); ZoneScoped; const auto txt = "Fibonacci (15)"; ZoneText( txt, strlen( txt ) );