OLD | NEW |
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 "Test.h" | 8 #include "Test.h" |
9 #include "TestClassDef.h" | |
10 #include "SkGraphics.h" | 9 #include "SkGraphics.h" |
11 #include "SkPaint.h" | 10 #include "SkPaint.h" |
12 #include "SkTLS.h" | 11 #include "SkTLS.h" |
13 #include "SkThreadUtils.h" | 12 #include "SkThreadUtils.h" |
14 | 13 |
15 static void thread_main(void*) { | 14 static void thread_main(void*) { |
16 SkGraphics::SetTLSFontCacheLimit(1 * 1024 * 1024); | 15 SkGraphics::SetTLSFontCacheLimit(1 * 1024 * 1024); |
17 | 16 |
18 const char text[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; | 17 const char text[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; |
19 size_t len = strlen(text); | 18 size_t len = strlen(text); |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 // TODO: Disabled for now to work around | 71 // TODO: Disabled for now to work around |
73 // http://code.google.com/p/skia/issues/detail?id=619 | 72 // http://code.google.com/p/skia/issues/detail?id=619 |
74 // ('flaky segfault in TLS test on Shuttle_Ubuntu12 buildbots') | 73 // ('flaky segfault in TLS test on Shuttle_Ubuntu12 buildbots') |
75 if( false ) test_threads(&thread_main); | 74 if( false ) test_threads(&thread_main); |
76 | 75 |
77 // Test to ensure that at thread destruction, TLS destructors | 76 // Test to ensure that at thread destruction, TLS destructors |
78 // have been called. | 77 // have been called. |
79 test_threads(&testTLSDestructor); | 78 test_threads(&testTLSDestructor); |
80 REPORTER_ASSERT(reporter, 0 == gCounter); | 79 REPORTER_ASSERT(reporter, 0 == gCounter); |
81 } | 80 } |
OLD | NEW |