()
| 80 | |
| 81 | |
| 82 | def test_default_allocated_bytes(): |
| 83 | pool = pa.default_memory_pool() |
| 84 | with allocate_bytes(pool, 1024): |
| 85 | check_allocated_bytes(pool) |
| 86 | assert pool.bytes_allocated() == pa.total_allocated_bytes() |
| 87 | |
| 88 | |
| 89 | def test_proxy_memory_pool(): |
nothing calls this directly
no test coverage detected