summaryrefslogtreecommitdiff
path: root/Source/UnitTests/Common/EventTest.cpp
diff options
context:
space:
mode:
authorJules Blok <jules.blok@gmail.com>2015-06-10 00:00:12 +0200
committerJules Blok <jules.blok@gmail.com>2015-06-10 00:00:12 +0200
commit7dfced21a2e5aac7195e0e1ad76468e30306766b (patch)
treebd671b639d3d911460b767caabad8fc8a759a6bf /Source/UnitTests/Common/EventTest.cpp
parentc25be031fc1031d795157d8344b87b7841145197 (diff)
parent7b0a65e295c784f9d573f2ef52d4e2a7b9bb2889 (diff)
Merge branch 'master' into stable
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..b3536f7655
--- /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 <thread>
+#include <gtest/gtest.h>
+
+#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();
+}