aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/LListTest.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-12-04 14:48:57 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-12-04 14:48:57 +0000
commitebce0301082cda9dc3e3298f6db91d46fe66298b (patch)
tree5b52f251b26a83b40869eebde13f16c2b888bd90 /tests/LListTest.cpp
parent4a9a612b5200597cca0bda0a356250835cbdc7d6 (diff)
Fix stale iterators in LList test. Add newline to end of SkTLList.h
git-svn-id: http://skia.googlecode.com/svn/trunk@6663 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests/LListTest.cpp')
-rw-r--r--tests/LListTest.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/LListTest.cpp b/tests/LListTest.cpp
index d574e090ec..89c4971b96 100644
--- a/tests/LListTest.cpp
+++ b/tests/LListTest.cpp
@@ -174,7 +174,10 @@ static void TestTLList(skiatest::Reporter* reporter) {
REPORTER_ASSERT(reporter, list2 == list1);
// add an element to the second list, check that iters are still valid
+ iter3.init(list2, Iter::kHead_IterStart);
+ iter4.init(list2, Iter::kTail_IterStart);
list2.addToHead(ListElement(2));
+
#ifdef SK_ENABLE_INST_COUNT
SkASSERT(3 == ListElement::InstanceCount());
#endif