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

Side by Side Diff: tests/TLSTest.cpp

Issue 1316233002: Style Change: NULL->nullptr (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-27 (Thursday) 10:25:06 EDT Created 5 years, 3 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 | « tests/SwizzlerTest.cpp ('k') | tests/TessellatingPathRendererTests.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 Google Inc. 2 * Copyright 2012 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkGraphics.h" 8 #include "SkGraphics.h"
9 #include "SkPaint.h" 9 #include "SkPaint.h"
10 #include "SkTLS.h" 10 #include "SkTLS.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 for (i = 0; i < N; ++i) { 50 for (i = 0; i < N; ++i) {
51 delete threads[i]; 51 delete threads[i];
52 } 52 }
53 } 53 }
54 54
55 static int32_t gCounter; 55 static int32_t gCounter;
56 56
57 static void* FakeCreateTLS() { 57 static void* FakeCreateTLS() {
58 sk_atomic_inc(&gCounter); 58 sk_atomic_inc(&gCounter);
59 return NULL; 59 return nullptr;
60 } 60 }
61 61
62 static void FakeDeleteTLS(void*) { 62 static void FakeDeleteTLS(void*) {
63 sk_atomic_dec(&gCounter); 63 sk_atomic_dec(&gCounter);
64 } 64 }
65 65
66 static void testTLSDestructor(void*) { 66 static void testTLSDestructor(void*) {
67 SkTLS::Get(FakeCreateTLS, FakeDeleteTLS); 67 SkTLS::Get(FakeCreateTLS, FakeDeleteTLS);
68 } 68 }
69 69
70 DEF_TEST(TLS, reporter) { 70 DEF_TEST(TLS, reporter) {
71 // TODO: Disabled for now to work around 71 // TODO: Disabled for now to work around
72 // http://code.google.com/p/skia/issues/detail?id=619 72 // http://code.google.com/p/skia/issues/detail?id=619
73 // ('flaky segfault in TLS test on Shuttle_Ubuntu12 buildbots') 73 // ('flaky segfault in TLS test on Shuttle_Ubuntu12 buildbots')
74 if( false ) test_threads(&thread_main); 74 if( false ) test_threads(&thread_main);
75 75
76 // Test to ensure that at thread destruction, TLS destructors 76 // Test to ensure that at thread destruction, TLS destructors
77 // have been called. 77 // have been called.
78 test_threads(&testTLSDestructor); 78 test_threads(&testTLSDestructor);
79 REPORTER_ASSERT(reporter, 0 == gCounter); 79 REPORTER_ASSERT(reporter, 0 == gCounter);
80 } 80 }
OLDNEW
« no previous file with comments | « tests/SwizzlerTest.cpp ('k') | tests/TessellatingPathRendererTests.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698