Lines Matching refs:CHECK
29 CHECK(&ref == &to); in tests()
30 CHECK(to.data() == memory); in tests()
31 CHECK(to.size() == 10); in tests()
32 CHECK(from.data() == nullptr); in tests()
33 CHECK(from.size() == 0); in tests()
35 CHECK(!tracking_allocator::did_allocate); in tests()
36 CHECK(tracking_allocator::deallocated_size == 20 * sizeof(T)); in tests()
39 CHECK(tracking_allocator::deallocated_size == 10 * sizeof(T)); in tests()
42 CHECK(!tracking_allocator::did_deallocate); in tests()
54 CHECK(&ref == &to); in tests()
55 CHECK(to.data() == nullptr); in tests()
56 CHECK(to.size() == 0); in tests()
57 CHECK(from.data() == nullptr); in tests()
58 CHECK(from.size() == 0); in tests()
60 CHECK(!tracking_allocator::did_allocate); in tests()
61 CHECK(tracking_allocator::deallocated_size == 20 * sizeof(T)); in tests()
64 CHECK(!tracking_allocator::did_deallocate); in tests()
67 CHECK(!tracking_allocator::did_deallocate); in tests()
80 CHECK(&ref == &to); in tests()
81 CHECK(to.data() == memory); in tests()
82 CHECK(to.size() == 10); in tests()
83 CHECK(from.data() == nullptr); in tests()
84 CHECK(from.size() == 0); in tests()
86 CHECK(!tracking_allocator::did_allocate); in tests()
87 CHECK(!tracking_allocator::did_deallocate); in tests()
90 CHECK(tracking_allocator::deallocated_size == 10 * sizeof(T)); in tests()
93 CHECK(!tracking_allocator::did_deallocate); in tests()
105 CHECK(&ref == &to); in tests()
106 CHECK(to.data() == nullptr); in tests()
107 CHECK(to.size() == 0); in tests()
108 CHECK(from.data() == nullptr); in tests()
109 CHECK(from.size() == 0); in tests()
111 CHECK(!tracking_allocator::did_allocate); in tests()
112 CHECK(!tracking_allocator::did_deallocate); in tests()
115 CHECK(!tracking_allocator::did_deallocate); in tests()
118 CHECK(!tracking_allocator::did_deallocate); in tests()
129 CHECK(&ref == &obj); in tests()
130 CHECK(obj.data() == memory); in tests()
131 CHECK(obj.size() == 10); in tests()
132 CHECK(!tracking_allocator::did_allocate); in tests()
133 CHECK(!tracking_allocator::did_deallocate); in tests()
136 CHECK(tracking_allocator::deallocated_size == 10 * sizeof(T)); in tests()