OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include "platform/assert.h" | 5 #include "platform/assert.h" |
6 #include "vm/random.h" | 6 #include "vm/random.h" |
7 #include "vm/thread_barrier.h" | 7 #include "vm/thread_barrier.h" |
8 #include "vm/thread_pool.h" | 8 #include "vm/thread_pool.h" |
9 #include "vm/unit_test.h" | 9 #include "vm/unit_test.h" |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... |
30 OS::Sleep(ms); | 30 OS::Sleep(ms); |
31 } | 31 } |
32 } | 32 } |
33 | 33 |
34 const intptr_t num_rounds_; | 34 const intptr_t num_rounds_; |
35 ThreadBarrier* barrier_; | 35 ThreadBarrier* barrier_; |
36 Random rng_; | 36 Random rng_; |
37 }; | 37 }; |
38 | 38 |
39 | 39 |
40 UNIT_TEST_CASE(ThreadBarrier) { | 40 VM_UNIT_TEST_CASE(ThreadBarrier) { |
41 static const intptr_t kNumTasks = 5; | 41 static const intptr_t kNumTasks = 5; |
42 static const intptr_t kNumRounds = 500; | 42 static const intptr_t kNumRounds = 500; |
43 | 43 |
44 Monitor* monitor = new Monitor(); | 44 Monitor* monitor = new Monitor(); |
45 Monitor* monitor_done = new Monitor(); | 45 Monitor* monitor_done = new Monitor(); |
46 { | 46 { |
47 ThreadBarrier barrier(kNumTasks + 1, monitor, monitor_done); | 47 ThreadBarrier barrier(kNumTasks + 1, monitor, monitor_done); |
48 for (intptr_t i = 0; i < kNumTasks; ++i) { | 48 for (intptr_t i = 0; i < kNumTasks; ++i) { |
49 Dart::thread_pool()->Run(new FuzzTask(kNumRounds, &barrier, i + 1)); | 49 Dart::thread_pool()->Run(new FuzzTask(kNumRounds, &barrier, i + 1)); |
50 } | 50 } |
51 for (intptr_t i = 0; i < kNumRounds; ++i) { | 51 for (intptr_t i = 0; i < kNumRounds; ++i) { |
52 barrier.Sync(); | 52 barrier.Sync(); |
53 } | 53 } |
54 barrier.Exit(); | 54 barrier.Exit(); |
55 } | 55 } |
56 | 56 |
57 delete monitor_done; | 57 delete monitor_done; |
58 delete monitor; | 58 delete monitor; |
59 } | 59 } |
60 | 60 |
61 } // namespace dart | 61 } // namespace dart |
OLD | NEW |