summaryrefslogtreecommitdiff
path: root/Source/UnitTests/Common/EventTest.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2014-04-14 23:23:16 +0200
committerPierre Bourdon <delroth@gmail.com>2014-04-14 23:23:16 +0200
commitcf315a487f8b4345d1408b27f5974b85fa37b20f (patch)
treef5c12a28338ee36695374456e895938ff530959b /Source/UnitTests/Common/EventTest.cpp
parentfc71494742dbdacd20f1cbfd78f327bc0edc4690 (diff)
parent7074feacbebb1521a7c041c13237e799b7299d56 (diff)
Merge pull request #271 from delroth/threading-stuff
Threading improvements: add Common::Flag and improve Common::Event
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();
+}