2018-07-08 13:35:40 +02:00
|
|
|
// 231-Cfg-OutputStreams.cpp
|
|
|
|
// Show how to replace the streams with a simple custom made streambuf.
|
|
|
|
|
|
|
|
// Note that this reimplementation _does not_ follow `std::cerr`
|
|
|
|
// semantic, because it buffers the output. For most uses however,
|
|
|
|
// there is no important difference between having `std::cerr` buffered
|
|
|
|
// or unbuffered.
|
|
|
|
|
2020-03-30 10:34:21 +02:00
|
|
|
#include <catch2/internal/catch_default_main.hpp>
|
2019-12-08 20:57:55 +01:00
|
|
|
|
2020-01-21 14:46:07 +01:00
|
|
|
#include <catch2/catch_test_macros.hpp>
|
2018-07-08 13:35:40 +02:00
|
|
|
|
2019-12-08 20:57:55 +01:00
|
|
|
#include <sstream>
|
|
|
|
#include <cstdio>
|
2019-10-29 23:38:21 +01:00
|
|
|
|
2018-07-08 13:35:40 +02:00
|
|
|
class out_buff : public std::stringbuf {
|
|
|
|
std::FILE* m_stream;
|
|
|
|
public:
|
2019-10-29 23:38:21 +01:00
|
|
|
out_buff(std::FILE* stream):m_stream(stream) {}
|
|
|
|
~out_buff();
|
2020-01-21 21:04:42 +01:00
|
|
|
int sync() override {
|
2018-07-08 13:35:40 +02:00
|
|
|
int ret = 0;
|
|
|
|
for (unsigned char c : str()) {
|
|
|
|
if (putc(c, m_stream) == EOF) {
|
|
|
|
ret = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Reset the buffer to avoid printing it multiple times
|
|
|
|
str("");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-10-29 23:38:21 +01:00
|
|
|
out_buff::~out_buff() { pubsync(); }
|
|
|
|
|
|
|
|
#if defined(__clang__)
|
|
|
|
#pragma clang diagnostic ignored "-Wexit-time-destructors" // static variables in cout/cerr/clog
|
|
|
|
#endif
|
|
|
|
|
2018-07-08 13:35:40 +02:00
|
|
|
namespace Catch {
|
|
|
|
std::ostream& cout() {
|
|
|
|
static std::ostream ret(new out_buff(stdout));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
std::ostream& clog() {
|
|
|
|
static std::ostream ret(new out_buff(stderr));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
std::ostream& cerr() {
|
|
|
|
return clog();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_CASE("This binary uses putc to write out output", "[compilation-only]") {
|
|
|
|
SUCCEED("Nothing to test.");
|
|
|
|
}
|