Skip to content
Snippets Groups Projects
Commit 63695a9e authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[test.common.logger] added test to show the current logger deficits

parent d55c6874
No related branches found
No related tags found
No related merge requests found
#include "test_common.hh" #include "test_common.hh"
// dune-stuff
#include <dune/stuff/common/logging.hh> #include <dune/stuff/common/logging.hh>
#include <dune/stuff/common/logstreams.hh> #include <dune/stuff/common/logstreams.hh>
...@@ -12,6 +13,17 @@ void balh(std::ostream& out) ...@@ -12,6 +13,17 @@ void balh(std::ostream& out)
c++; c++;
} }
template <class OutStreamType>
void do_something_that_takes_long(OutStreamType& out)
{
out << " there should appear five dots, but not too fast:" << std::flush;
for (unsigned int i = 0; i < 5; ++i) {
busywait(1000);
out << "." << std::flush;
}
out << std::endl;
} // void do_something_that_takes_long()
int main(int, char* []) int main(int, char* [])
{ {
DSC::Logger().create(DSC::LOG_CONSOLE | DSC::LOG_ERROR); DSC::Logger().create(DSC::LOG_CONSOLE | DSC::LOG_ERROR);
...@@ -30,8 +42,18 @@ int main(int, char* []) ...@@ -30,8 +42,18 @@ int main(int, char* [])
DSC_LOG_ERROR << "in output\n"; DSC_LOG_ERROR << "in output\n";
balh(DSC_LOG_ERROR); balh(DSC_LOG_ERROR);
// this should do nothitng whatsoever // this should do nothing whatsoever
balh(DSC::dev_null); balh(DSC::dev_null);
DSC::Logger().flush(); DSC::Logger().flush();
// this is the desired result:
DSC::LogStream& err = DSC::Logger().error();
std::cout << "begin std::cout test" << std::endl;
do_something_that_takes_long(std::cout);
std::cout << "end std::cout test" << std::endl;
std::cout << "begin Logger().error() test" << std::endl;
do_something_that_takes_long(err);
std::cout << "end Logger().error() test" << std::endl;
return 0; return 0;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment