2017-01-23 15:32:21 +11:00
|
|
|
#include "backtrace.hpp"
|
|
|
|
#include "tap.hpp"
|
|
|
|
#include "stream.hpp"
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
int
|
|
|
|
main (int, char **) {
|
2018-08-05 14:42:02 +10:00
|
|
|
cruft::TAP::logger tap;
|
2017-01-23 15:32:21 +11:00
|
|
|
|
2019-01-03 15:48:34 +11:00
|
|
|
// Instantiate a backtrace just so we know that linking has worked.
|
2019-07-02 16:37:43 +10:00
|
|
|
::cruft::backtrace foo;
|
2019-01-03 15:48:34 +11:00
|
|
|
(void)foo;
|
|
|
|
|
2017-01-23 15:32:21 +11:00
|
|
|
tap.noop ();
|
|
|
|
|
2017-05-22 13:55:21 +10:00
|
|
|
return tap.status ();
|
2017-01-23 15:32:21 +11:00
|
|
|
}
|