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

Side by Side Diff: runtime/vm/thread_barrier_test.cc

Issue 2666133002: Added new type of unit test, RAW_UNIT_TEST_CASE, which is used for tests that can be flaky if run w… (Closed)
Patch Set: Fixed name of UNIT_TEST_CASE macro Created 3 years, 10 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
« no previous file with comments | « runtime/vm/stack_frame_test.cc ('k') | runtime/vm/thread_pool_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « runtime/vm/stack_frame_test.cc ('k') | runtime/vm/thread_pool_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698