mirror of
https://github.com/boostorg/core.git
synced 2025-07-31 05:17:22 +02:00
Abort instead of assert if report_errors() not called
This commit is contained in:
@ -23,10 +23,10 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
#include <boost/core/no_exceptions_support.hpp>
|
#include <boost/core/no_exceptions_support.hpp>
|
||||||
#include <boost/assert.hpp>
|
|
||||||
#include <boost/current_function.hpp>
|
#include <boost/current_function.hpp>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
|
#include <cstdlib>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
|
|
||||||
@ -45,11 +45,14 @@ namespace detail
|
|||||||
class test_result {
|
class test_result {
|
||||||
public:
|
public:
|
||||||
test_result()
|
test_result()
|
||||||
: report_errors_called_(false)
|
: report_(false)
|
||||||
, errors_(0) { }
|
, errors_(0) { }
|
||||||
|
|
||||||
~test_result() {
|
~test_result() {
|
||||||
BOOST_ASSERT(report_errors_called_);
|
if (!report_) {
|
||||||
|
BOOST_LIGHTWEIGHT_TEST_OSTREAM << "report_errors() not called" << std::endl;
|
||||||
|
std::abort();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void error() {
|
void error() {
|
||||||
@ -57,12 +60,12 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
int done() {
|
int done() {
|
||||||
report_errors_called_ = true;
|
report_ = true;
|
||||||
return errors_;
|
return errors_;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool report_errors_called_;
|
bool report_;
|
||||||
int errors_;
|
int errors_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user