| 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 "SkGraphics.h" | 9 #include "SkGraphics.h" |
| 10 #include "SkPaint.h" | 10 #include "SkPaint.h" |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| 81 | 81 |
| 82 #include "TestClassDef.h" | 82 #include "TestClassDef.h" |
| 83 DEFINE_TESTCLASS("TLS", TLSClass, TestTLS) | 83 DEFINE_TESTCLASS_SHORT(TestTLS) |
| OLD | NEW |