Boost logo

Boost :

Subject: Re: [boost] Checking interest in stacktrace library
From: Klemens Morgenstern (klemens.morgenstern_at_[hidden])
Date: 2016-06-18 07:23:02


Am 18.06.2016 um 12:34 schrieb Antony Polukhin:
> Hi,
>
> I've got some prototype for getting stack traces:
> https://github.com/apolukhin/stacktrace
> It's design is based on the idea that class for stacktrace must be fully
> noexcept, without dynamic allocations in constructors and as simple as
> possible.
>
> Is there interest in it?
> What functionality would you like to have in it?
>
I think that'd be great - even more so if you could integrate this with
boost.test, so I could state an expectation of what my function calls.
I.e. something like that:

void f(int) {g(); h(); g();};

BOOST_CHECK_CALLS(f(42), g, h, g);


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk