From: Wolfgang Bangerth Date: Fri, 13 Jul 2012 22:25:34 +0000 (+0000) Subject: Route output into the output file, not onto the screen. X-Git-Tag: v8.0.0~2434 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=968ba60aadff08ef6fd74fda5c504ccb75c27bf0;p=dealii.git Route output into the output file, not onto the screen. git-svn-id: https://svn.dealii.org/trunk@25701 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/base/utilities_04.cc b/tests/base/utilities_04.cc index f77b25c590..fb654e39bf 100644 --- a/tests/base/utilities_04.cc +++ b/tests/base/utilities_04.cc @@ -31,7 +31,7 @@ std::vector split_string(const std::string &text, const char delim= std::stringstream stream(text); while( getline(stream, word, delim) ) result.push_back(word); - + return result; } @@ -46,7 +46,7 @@ void test_function(const std::string &original_text, std::vector should_be_vec = split_string(result); - + Assert(res_vec.size()==should_be_vec.size(), ExcInternalError()); for (unsigned int i=0;i