libcruft-util/tap.cpp

73 lines
1.5 KiB
C++
Raw Normal View History

2015-04-13 16:43:49 +10:00
/*
2018-08-04 15:14:06 +10:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
2015-04-13 16:43:49 +10:00
*
2018-03-20 14:50:32 +11:00
* Copyright 2015-2018 Danny Robson <danny@nerdcruft.net>
2015-04-13 16:43:49 +10:00
*/
#include "tap.hpp"
2018-03-20 14:50:32 +11:00
#include "debug.hpp"
2015-04-13 16:43:49 +10:00
#include <iostream>
using cruft::TAP::logger;
2015-04-13 16:43:49 +10:00
///////////////////////////////////////////////////////////////////////////////
2015-04-13 16:43:49 +10:00
logger::logger ():
logger (std::cout)
{ ; }
2018-03-20 14:50:32 +11:00
//-----------------------------------------------------------------------------
logger::logger (std::ostream &_output):
m_output (_output),
2015-04-13 16:43:49 +10:00
m_status (EXIT_SUCCESS),
m_size (0)
{ ; }
//-----------------------------------------------------------------------------
logger::~logger ()
{
2018-03-20 14:50:32 +11:00
CHECK_EQ (m_reported, m_status);
m_output << "1.." << m_size << '\n';
2015-04-13 16:43:49 +10:00
}
///////////////////////////////////////////////////////////////////////////////
void
logger::skip (const std::string &msg)
{
m_output << "ok " << ++m_size << " - # SKIP " << msg << '\n';
2015-04-13 16:43:49 +10:00
}
//-----------------------------------------------------------------------------
void
logger::todo (const std::string &msg)
{
m_output << "not ok " << ++m_size << " - # TODO " << msg << '\n';
2015-04-13 16:43:49 +10:00
}
//-----------------------------------------------------------------------------
void
logger::noop (void)
{
skip ("noop");
}
///////////////////////////////////////////////////////////////////////////////
2015-04-13 16:43:49 +10:00
int
logger::status (void) const
{
2018-03-20 14:50:32 +11:00
#if !defined(NDEBUG)
m_reported = m_status;
#endif
2015-04-13 16:43:49 +10:00
return m_status;
}