Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-04-27 18:16:44 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-04-29 20:12:20 +0300
commitd71ecd5271a9809df2671d51814c8e22977b7477 (patch)
treee751db252e484a129300e02a96dc2623712ac6b3 /test
parent18fec05e576ef95946d038fb26a81606613d0e5e (diff)
Make test program data generation rate more sensible.
Diffstat (limited to 'test')
-rw-r--r--test/test.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test.cpp b/test/test.cpp
index 325620fb..51cad692 100644
--- a/test/test.cpp
+++ b/test/test.cpp
@@ -189,6 +189,7 @@ void DepthTest()
tracy::SetThreadName( "Depth test" );
for(;;)
{
+ std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
ZoneScoped;
const auto txt = "Fibonacci (15)";
ZoneText( txt, strlen( txt ) );