Danny Robson
9471b9eae7
These tests were all assumed to execute correctly because CTest is not capable of parsing the TAP output and instead relies entirely on status codes.
19 lines
313 B
C++
19 lines
313 B
C++
#include "backtrace.hpp"
|
|
#include "tap.hpp"
|
|
#include "stream.hpp"
|
|
|
|
#include <iostream>
|
|
#include <cstdlib>
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
int
|
|
main (int, char **) {
|
|
util::TAP::logger tap;
|
|
|
|
debug::backtrace ();
|
|
tap.noop ();
|
|
|
|
return tap.status ();
|
|
}
|