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

Side by Side Diff: tests/RefDictTest.cpp

Issue 98703002: Fix compilation with SK_ENABLE_INST_COUNT=1 (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « tests/LListTest.cpp ('k') | tests/Test.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 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 #include "Test.h" 8 #include "Test.h"
9 #include "SkRefDict.h" 9 #include "SkRefDict.h"
10 10
11 class TestRC : public SkRefCnt { 11 class TestRC : public SkRefCnt {
12 public: 12 public:
13 SK_DECLARE_INST_COUNT(TestRC) 13 SK_DECLARE_INST_COUNT(TestRC)
14 private: 14 private:
15 typedef SkRefCnt INHERITED; 15 typedef SkRefCnt INHERITED;
16 }; 16 };
17 17
18 SK_DEFINE_INST_COUNT(TestRC)
19
20 static void TestRefDict(skiatest::Reporter* reporter) { 18 static void TestRefDict(skiatest::Reporter* reporter) {
21 TestRC data0, data1; 19 TestRC data0, data1;
22 SkRefDict dict; 20 SkRefDict dict;
23 21
24 REPORTER_ASSERT(reporter, NULL == dict.find(NULL)); 22 REPORTER_ASSERT(reporter, NULL == dict.find(NULL));
25 REPORTER_ASSERT(reporter, NULL == dict.find("foo")); 23 REPORTER_ASSERT(reporter, NULL == dict.find("foo"));
26 REPORTER_ASSERT(reporter, NULL == dict.find("bar")); 24 REPORTER_ASSERT(reporter, NULL == dict.find("bar"));
27 25
28 dict.set("foo", &data0); 26 dict.set("foo", &data0);
29 REPORTER_ASSERT(reporter, &data0 == dict.find("foo")); 27 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 REPORTER_ASSERT(reporter, &data0 == d.find("foo")); 68 REPORTER_ASSERT(reporter, &data0 == d.find("foo"));
71 REPORTER_ASSERT(reporter, 2 == data0.getRefCnt()); 69 REPORTER_ASSERT(reporter, 2 == data0.getRefCnt());
72 // let d go out of scope still with a ref on data0 70 // let d go out of scope still with a ref on data0
73 } 71 }
74 // be sure d's destructor lowered data0's owner count back to 1 72 // be sure d's destructor lowered data0's owner count back to 1
75 REPORTER_ASSERT(reporter, 1 == data0.getRefCnt()); 73 REPORTER_ASSERT(reporter, 1 == data0.getRefCnt());
76 } 74 }
77 75
78 #include "TestClassDef.h" 76 #include "TestClassDef.h"
79 DEFINE_TESTCLASS("RefDict", RefDictTestClass, TestRefDict) 77 DEFINE_TESTCLASS("RefDict", RefDictTestClass, TestRefDict)
OLDNEW
« no previous file with comments | « tests/LListTest.cpp ('k') | tests/Test.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698