From 968ba60aadff08ef6fd74fda5c504ccb75c27bf0 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 13 Jul 2012 22:25:34 +0000 Subject: [PATCH] Route output into the output file, not onto the screen. git-svn-id: https://svn.dealii.org/trunk@25701 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/base/utilities_04.cc | 16 ++++++++-------- tests/base/utilities_04/cmp/generic | 2 ++ 2 files changed, 10 insertions(+), 8 deletions(-) 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