(capture, msg)
| 429 | |
| 430 | @pytest.mark.skipif("env.GRAALPY", reason="Cannot reliably trigger GC") |
| 431 | def test_reallocation_e(capture, msg): |
| 432 | with capture: |
| 433 | create_and_destroy(3.5, 4.5) |
| 434 | assert msg(capture) == strip_comments( |
| 435 | """ |
| 436 | noisy new # preallocation needed before invoking placement-new overload |
| 437 | noisy placement new # Placement new |
| 438 | NoisyAlloc(double 3.5) # construction |
| 439 | --- |
| 440 | ~NoisyAlloc() # Destructor |
| 441 | noisy delete # operator delete |
| 442 | """ |
| 443 | ) |
| 444 | |
| 445 | |
| 446 | @pytest.mark.skipif("env.GRAALPY", reason="Cannot reliably trigger GC") |
nothing calls this directly
no test coverage detected