7f97a76b80
Avoid hang in OncePtr test when using "dm --threads 1". The test will hang the threads until sk_num_cores() threads have run the code. This requires that sk_num_cores() threads to be run in parallel, which the global thread pool will not do if the thread count is smaller than sk_num_cores(). BUG=skia: Review URL: https://codereview.chromium.org/1419593004
51 lines
1.1 KiB
C++
51 lines
1.1 KiB
C++
/*
|
|
* Copyright 2015 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "Test.h"
|
|
#include "SkOncePtr.h"
|
|
#include "SkTaskGroup.h"
|
|
|
|
DEF_TEST(OncePtr, r) {
|
|
SkOncePtr<int> once;
|
|
|
|
static SkAtomic<int> calls(0);
|
|
auto create = [&] {
|
|
calls.fetch_add(1);
|
|
return new int(5);
|
|
};
|
|
|
|
SkAtomic<int> force_a_race(sk_parallel_for_thread_count());
|
|
if (force_a_race < 1) {
|
|
return;
|
|
}
|
|
sk_parallel_for(sk_num_cores()*4, [&](size_t) {
|
|
force_a_race.fetch_add(-1);
|
|
while (force_a_race.load() > 0);
|
|
|
|
int* n = once.get(create);
|
|
REPORTER_ASSERT(r, *n == 5);
|
|
});
|
|
REPORTER_ASSERT(r, calls.load() == 1);
|
|
}
|
|
|
|
/* TODO(mtklein): next CL
|
|
|
|
SK_DECLARE_STATIC_ONCE(once_noptr);
|
|
DEF_TEST(OnceNoPtr, r) {
|
|
static SkAtomic<int> calls(0);
|
|
|
|
SkAtomic<int> force_a_race(sk_num_cores());
|
|
sk_parallel_for(sk_num_cores()*4, [&](size_t) {
|
|
force_a_race.fetch_add(-1);
|
|
while (force_a_race.load() > 0);
|
|
|
|
SkOnce(&once_noptr, [&] { calls.fetch_add(1); });
|
|
});
|
|
REPORTER_ASSERT(r, calls.load() == 1);
|
|
}
|
|
*/
|