libcruft-util/test/backtrace.cpp

18 lines
294 B
C++
Raw Normal View History

#include "backtrace.hpp"
#include "tap.hpp"
#include "stream.hpp"
#include <cstdlib>
///////////////////////////////////////////////////////////////////////////////
int
main (int, char **) {
cruft::TAP::logger tap;
debug::backtrace ();
tap.noop ();
return tap.status ();
}