Closed GoogleCodeExporter closed 9 years ago
@mirality, to stream more than one thing to SCOPED_TRACE, write:
SCOPED_TRACE(Message() << "foo = " << foo);
I'm not sure SCOPED_TRACE_AT and TRACE_HERE are worth the complexity. You can
write:
void foo(xxxxx) {
SCOPED_TRACE("foo");
...
}
...
SCOPED_TRACE("bar");
foo(xxxxx);
Original comment by zhanyong...@gmail.com
on 15 Oct 2009 at 5:27
I think what Miral really needs is a meaningful stack trace with each failure.
Unfortunately, we don't have it it although we are tracking an issue 99 to
provide a
hook for clients to attach one.
Original comment by vladlosev
on 20 Oct 2009 at 10:43
Original comment by vladlosev
on 21 Oct 2009 at 6:44
Automatic stack trace would be nice. I added such a feature to CppUnit at one
point,
although it was Windows- and MSVC-specific.
Original comment by uec...@gmail.com
on 21 Oct 2009 at 7:06
Original issue reported on code.google.com by
uec...@gmail.com
on 14 Oct 2009 at 5:36