BusyLoopTest: Only run 10 times.

Running this test 100 times is not worth to spend 1 second.
This commit is contained in:
degasus 2016-06-27 22:06:52 +02:00
parent ddc9e414ee
commit 3b3cbc4aab

View File

@ -14,7 +14,7 @@ TEST(BusyLoopTest, MultiThreaded)
{
Common::BlockingLoop loop;
Common::Event e;
for (int i = 0; i < 100; i++)
for (int i = 0; i < 10; i++)
{
loop.Prepare();
std::thread loop_thread([&]() { loop.Run([&]() { e.Set(); }); });