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>
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
using cruft::TAP::logger;
|
2015-04-13 16:43:49 +10:00
|
|
|
|
2015-09-21 15:25:56 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2015-04-13 16:43:49 +10:00
|
|
|
logger::logger ():
|
2017-11-02 18:05:33 +11:00
|
|
|
logger (std::cout)
|
|
|
|
{ ; }
|
|
|
|
|
2018-03-20 14:50:32 +11:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2017-11-02 18:05:33 +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);
|
2018-03-22 16:10:31 +11:00
|
|
|
m_output << "1.." << m_size << '\n';
|
2015-04-13 16:43:49 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
void
|
|
|
|
logger::skip (const std::string &msg)
|
|
|
|
{
|
2018-03-22 16:10:31 +11:00
|
|
|
m_output << "ok " << ++m_size << " - # SKIP " << msg << '\n';
|
2015-04-13 16:43:49 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
logger::todo (const std::string &msg)
|
|
|
|
{
|
2018-03-22 16:10:31 +11:00
|
|
|
m_output << "not ok " << ++m_size << " - # TODO " << msg << '\n';
|
2015-04-13 16:43:49 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
logger::noop (void)
|
|
|
|
{
|
|
|
|
skip ("noop");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-21 15:25:56 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
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;
|
|
|
|
}
|