dart-sdk/runtime/vm/thread_barrier_test.cc
Ryan Macnak 2bfecc160b [vm] Update to constexpr in runtime/vm.
TEST=build
Change-Id: I2dd8ae69764af27f480a19995b491e98f52476ae
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/293902
Reviewed-by: Liam Appelbe <liama@google.com>
Commit-Queue: Ryan Macnak <rmacnak@google.com>
2023-04-12 22:18:54 +00:00

54 lines
1.3 KiB
C++

// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#include "vm/thread_barrier.h"
#include "platform/assert.h"
#include "vm/random.h"
#include "vm/thread_pool.h"
#include "vm/unit_test.h"
namespace dart {
class FuzzTask : public ThreadPool::Task {
public:
FuzzTask(intptr_t num_rounds, ThreadBarrier* barrier, uint64_t seed)
: num_rounds_(num_rounds), barrier_(barrier), rng_(seed) {}
virtual void Run() {
for (intptr_t i = 0; i < num_rounds_; ++i) {
RandomSleep();
barrier_->Sync();
}
barrier_->Release();
}
private:
void RandomSleep() {
int64_t ms = rng_.NextUInt32() % 4;
if (ms > 0) {
OS::Sleep(ms);
}
}
const intptr_t num_rounds_;
ThreadBarrier* barrier_;
Random rng_;
};
VM_UNIT_TEST_CASE(ThreadBarrier) {
const intptr_t kNumTasks = 5;
const intptr_t kNumRounds = 500;
ThreadBarrier* barrier = new ThreadBarrier(kNumTasks + 1, kNumTasks + 1);
for (intptr_t i = 0; i < kNumTasks; ++i) {
Dart::thread_pool()->Run<FuzzTask>(kNumRounds, barrier, i + 1);
}
for (intptr_t i = 0; i < kNumRounds; ++i) {
barrier->Sync();
}
barrier->Release();
}
} // namespace dart