Lines Matching refs:CHECK
28 CHECK(!tracking_allocator::did_allocate); in tests()
29 CHECK(!tracking_allocator::did_deallocate); in tests()
30 CHECK(a.data() == b_mem); in tests()
31 CHECK(b.data() == a_mem); in tests()
32 CHECK(a.size() == 20); in tests()
33 CHECK(b.size() == 10); in tests()
45 CHECK(!tracking_allocator::did_allocate); in tests()
46 CHECK(!tracking_allocator::did_deallocate); in tests()
47 CHECK(a.data() == nullptr); in tests()
48 CHECK(b.data() == a_mem); in tests()
49 CHECK(a.size() == 0); in tests()
50 CHECK(b.size() == 10); in tests()
62 CHECK(!tracking_allocator::did_allocate); in tests()
63 CHECK(!tracking_allocator::did_deallocate); in tests()
64 CHECK(a.data() == b_mem); in tests()
65 CHECK(b.data() == nullptr); in tests()
66 CHECK(a.size() == 20); in tests()
67 CHECK(b.size() == 0); in tests()
78 CHECK(!tracking_allocator::did_allocate); in tests()
79 CHECK(!tracking_allocator::did_deallocate); in tests()
80 CHECK(a.data() == nullptr); in tests()
81 CHECK(b.data() == nullptr); in tests()
82 CHECK(a.size() == 0); in tests()
83 CHECK(b.size() == 0); in tests()
94 CHECK(!tracking_allocator::did_allocate); in tests()
95 CHECK(!tracking_allocator::did_deallocate); in tests()
96 CHECK(a.data() == a_mem); in tests()
97 CHECK(a.size() == 10); in tests()