![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/lib/node_modules/mediasoup/worker/deps/catch/examples/ |
Upload File : |
// 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. #define CATCH_CONFIG_NOSTDOUT #define CATCH_CONFIG_MAIN #include <catch2/catch.hpp> class out_buff : public std::stringbuf { std::FILE* m_stream; public: out_buff(std::FILE* stream):m_stream(stream) {} ~out_buff(); int sync() override { 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; } }; out_buff::~out_buff() { pubsync(); } #if defined(__clang__) #pragma clang diagnostic ignored "-Wexit-time-destructors" // static variables in cout/cerr/clog #endif 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."); }