OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // NOTE(vtl): Some of these tests are inherently flaky (e.g., if run on a | 5 // NOTE(vtl): Some of these tests are inherently flaky (e.g., if run on a |
6 // heavily-loaded system). Sorry. |test::EpsilonTimeout()| may be increased to | 6 // heavily-loaded system). Sorry. |test::EpsilonTimeout()| may be increased to |
7 // increase tolerance and reduce observed flakiness (though doing so reduces the | 7 // increase tolerance and reduce observed flakiness (though doing so reduces the |
8 // meaningfulness of the test). | 8 // meaningfulness of the test). |
9 | 9 |
10 #include "mojo/system/waiter_list.h" | 10 #include "mojo/edk/system/waiter_list.h" |
11 | 11 |
12 #include "base/threading/platform_thread.h" // For |Sleep()|. | 12 #include "base/threading/platform_thread.h" // For |Sleep()|. |
13 #include "base/time/time.h" | 13 #include "base/time/time.h" |
14 #include "mojo/system/handle_signals_state.h" | 14 #include "mojo/edk/system/handle_signals_state.h" |
15 #include "mojo/system/test_utils.h" | 15 #include "mojo/edk/system/test_utils.h" |
16 #include "mojo/system/waiter.h" | 16 #include "mojo/edk/system/waiter.h" |
17 #include "mojo/system/waiter_test_utils.h" | 17 #include "mojo/edk/system/waiter_test_utils.h" |
18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
19 | 19 |
20 namespace mojo { | 20 namespace mojo { |
21 namespace system { | 21 namespace system { |
22 namespace { | 22 namespace { |
23 | 23 |
24 TEST(WaiterListTest, BasicCancel) { | 24 TEST(WaiterListTest, BasicCancel) { |
25 MojoResult result; | 25 MojoResult result; |
26 uint32_t context; | 26 uint32_t context; |
27 | 27 |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 EXPECT_EQ(8u, context2); | 280 EXPECT_EQ(8u, context2); |
281 EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, result3); | 281 EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, result3); |
282 EXPECT_EQ(9u, context3); | 282 EXPECT_EQ(9u, context3); |
283 EXPECT_EQ(MOJO_RESULT_CANCELLED, result4); | 283 EXPECT_EQ(MOJO_RESULT_CANCELLED, result4); |
284 EXPECT_EQ(10u, context4); | 284 EXPECT_EQ(10u, context4); |
285 } | 285 } |
286 | 286 |
287 } // namespace | 287 } // namespace |
288 } // namespace system | 288 } // namespace system |
289 } // namespace mojo | 289 } // namespace mojo |
OLD | NEW |