diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-04-14 01:15:23 +0200 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-04-14 10:54:07 +0200 |
| commit | 6bdcbad3e4488c85ae402dcb44f65005769c64b9 (patch) | |
| tree | eed480560952a90b823cd91af76d4ca39e048dce /Source/UnitTests/Common/EventTest.cpp | |
| parent | f9fb39d383bb462293ea1104e29c5e6651e2d0e3 (diff) | |
Common: Move the Event class to a separate file, and add tests for it. Fix includes everywhere to match this.
Diffstat (limited to 'Source/UnitTests/Common/EventTest.cpp')
| -rw-r--r-- | Source/UnitTests/Common/EventTest.cpp | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Source/UnitTests/Common/EventTest.cpp b/Source/UnitTests/Common/EventTest.cpp new file mode 100644 index 0000000000..41949a893d --- /dev/null +++ b/Source/UnitTests/Common/EventTest.cpp @@ -0,0 +1,42 @@ +// Copyright 2014 Dolphin Emulator Project +// Licensed under GPLv2 +// Refer to the license.txt file included. + +#include <gtest/gtest.h> +#include <thread> + +#include "Common/Event.h" + +using Common::Event; + +TEST(Event, MultiThreaded) +{ + Event has_sent, can_send; + int shared_obj; + const int ITERATIONS_COUNT = 100000; + + auto sender = [&]() { + for (int i = 0; i < ITERATIONS_COUNT; ++i) + { + can_send.Wait(); + shared_obj = i; + has_sent.Set(); + } + }; + + auto receiver = [&]() { + for (int i = 0; i < ITERATIONS_COUNT; ++i) { + has_sent.Wait(); + EXPECT_EQ(i, shared_obj); + can_send.Set(); + } + }; + + std::thread sender_thread(sender); + std::thread receiver_thread(receiver); + + can_send.Set(); + + sender_thread.join(); + receiver_thread.join(); +} |
