summaryrefslogtreecommitdiff
path: root/Source/UnitTests/Common/EventTest.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2014-04-14 01:15:23 +0200
committerPierre Bourdon <delroth@gmail.com>2014-04-14 10:54:07 +0200
commit6bdcbad3e4488c85ae402dcb44f65005769c64b9 (patch)
treeeed480560952a90b823cd91af76d4ca39e048dce /Source/UnitTests/Common/EventTest.cpp
parentf9fb39d383bb462293ea1104e29c5e6651e2d0e3 (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.cpp42
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();
+}