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

Side by Side Diff: tests/OncePtrTest.cpp

Issue 1953533002: SkOncePtr -> SkOnce (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: hide sk_num_cores() Created 4 years, 7 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 | « src/utils/SkEventTracer.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #include "Test.h"
9 #include "SkOncePtr.h"
10 #include "SkTaskGroup.h"
11
12 SK_DECLARE_STATIC_ONCE_PTR(int, once);
13
14 DEF_TEST(OncePtr, r) {
15 static SkAtomic<int> calls(0);
16 auto create = [&] {
17 calls.fetch_add(1);
18 return new int(5);
19 };
20
21 SkTaskGroup().batch(sk_num_cores()*4, [&](size_t) {
22 int* n = once.get(create);
23 REPORTER_ASSERT(r, *n == 5);
24 });
25 REPORTER_ASSERT(r, calls.load() == 1);
26 }
OLDNEW
« no previous file with comments | « src/utils/SkEventTracer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698