libcruft-util/tap.cpp

81 lines
1.9 KiB
C++
Raw Normal View History

2015-04-13 16:43:49 +10:00
/*
2015-04-13 18:05:28 +10:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
2015-04-13 16:43:49 +10:00
*
2015-04-13 18:05:28 +10:00
* http://www.apache.org/licenses/LICENSE-2.0
2015-04-13 16:43:49 +10:00
*
2015-04-13 18:05:28 +10:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
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 util::TAP::logger;
///////////////////////////////////////////////////////////////////////////////
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;
}