2
0
mirror of https://github.com/boostorg/json.git synced 2026-01-19 04:12:14 +00:00

fix pretty printers test

This commit is contained in:
Dmitry Arkhipov
2026-01-02 20:18:12 +03:00
parent 707a450ade
commit 563234ce21

View File

@@ -82,7 +82,7 @@ int main()
static_resource sr(buf);
// TEST_EXPR( 'sr', 'static_resource [buffer={0}, head={0}, free=1024]', '/a &buf' )
sr.allocate(200);
(void)sr.allocate(200);
unsigned char* new_head = buf + 200;
(void)new_head;
// TEST_EXPR( 'sr', 'static_resource [buffer={0}, head={1}, free=824]', '/a &buf', '/a new_head' )
@@ -113,7 +113,7 @@ int main()
monotonic_resource mr(buf, 10, sp);
// TEST_EXPR( 'mr', 'monotonic_resource [buffer={0}, block={0}, head={0}, free=10, upstream=storage_ptr [trivial, shared, refs=2, resource=static_resource [buffer={0}, head={0}, free=1024]]]', '/a &buf' )
mr.allocate(4);
(void)mr.allocate(4);
unsigned char* new_head = buf + 4;
(void)new_head;
// TEST_EXPR( 'mr', 'monotonic_resource [buffer={0}, block={0}, head={1}, free=6, upstream=storage_ptr [trivial, shared, refs=2, resource=static_resource [buffer={0}, head={0}, free=1024]]]', '/a &buf', '/a new_head' )