Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Side by Side Diff: base/platform_thread_unittest.cc

Issue 6001010: Move platform_thread to base/threading and put in the base namespace. I left ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/platform_thread_posix.cc ('k') | base/platform_thread_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/platform_thread.h"
6
7 #include "testing/gtest/include/gtest/gtest.h"
8
9 typedef testing::Test PlatformThreadTest;
10
11 // Trivial tests that thread runs and doesn't crash on create and join ---------
12
13 class TrivialThread : public PlatformThread::Delegate {
14 public:
15 TrivialThread() : did_run_(false) {}
16
17 virtual void ThreadMain() {
18 did_run_ = true;
19 }
20
21 bool did_run() const { return did_run_; }
22
23 private:
24 bool did_run_;
25
26 DISALLOW_COPY_AND_ASSIGN(TrivialThread);
27 };
28
29 TEST_F(PlatformThreadTest, Trivial) {
30 TrivialThread thread;
31 PlatformThreadHandle handle = kNullThreadHandle;
32
33 ASSERT_FALSE(thread.did_run());
34 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
35 PlatformThread::Join(handle);
36 ASSERT_TRUE(thread.did_run());
37 }
38
39 TEST_F(PlatformThreadTest, TrivialTimesTen) {
40 TrivialThread thread[10];
41 PlatformThreadHandle handle[arraysize(thread)];
42
43 for (size_t n = 0; n < arraysize(thread); n++)
44 ASSERT_FALSE(thread[n].did_run());
45 for (size_t n = 0; n < arraysize(thread); n++)
46 ASSERT_TRUE(PlatformThread::Create(0, &thread[n], &handle[n]));
47 for (size_t n = 0; n < arraysize(thread); n++)
48 PlatformThread::Join(handle[n]);
49 for (size_t n = 0; n < arraysize(thread); n++)
50 ASSERT_TRUE(thread[n].did_run());
51 }
52
53 // Tests of basic thread functions ---------------------------------------------
54
55 class FunctionTestThread : public TrivialThread {
56 public:
57 FunctionTestThread() : thread_id_(0) {}
58
59 virtual void ThreadMain() {
60 thread_id_ = PlatformThread::CurrentId();
61 PlatformThread::YieldCurrentThread();
62 PlatformThread::Sleep(50);
63
64 TrivialThread::ThreadMain();
65 }
66
67 PlatformThreadId thread_id() const { return thread_id_; }
68
69 private:
70 PlatformThreadId thread_id_;
71
72 DISALLOW_COPY_AND_ASSIGN(FunctionTestThread);
73 };
74
75 TEST_F(PlatformThreadTest, Function) {
76 PlatformThreadId main_thread_id = PlatformThread::CurrentId();
77
78 FunctionTestThread thread;
79 PlatformThreadHandle handle = kNullThreadHandle;
80
81 ASSERT_FALSE(thread.did_run());
82 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
83 PlatformThread::Join(handle);
84 ASSERT_TRUE(thread.did_run());
85 EXPECT_NE(thread.thread_id(), main_thread_id);
86 }
87
88 TEST_F(PlatformThreadTest, FunctionTimesTen) {
89 PlatformThreadId main_thread_id = PlatformThread::CurrentId();
90
91 FunctionTestThread thread[10];
92 PlatformThreadHandle handle[arraysize(thread)];
93
94 for (size_t n = 0; n < arraysize(thread); n++)
95 ASSERT_FALSE(thread[n].did_run());
96 for (size_t n = 0; n < arraysize(thread); n++)
97 ASSERT_TRUE(PlatformThread::Create(0, &thread[n], &handle[n]));
98 for (size_t n = 0; n < arraysize(thread); n++)
99 PlatformThread::Join(handle[n]);
100 for (size_t n = 0; n < arraysize(thread); n++) {
101 ASSERT_TRUE(thread[n].did_run());
102 EXPECT_NE(thread[n].thread_id(), main_thread_id);
103 }
104 }
OLDNEW
« no previous file with comments | « base/platform_thread_posix.cc ('k') | base/platform_thread_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698