From: Wolfgang Bangerth Date: Tue, 26 Jun 2001 13:45:52 +0000 (+0000) Subject: Undo previous change, as it modifies the output of the X-Git-Tag: v8.0.0~19036 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43f6f00d04fe0f166c3311d1cccaefa1077a96f0;p=dealii.git Undo previous change, as it modifies the output of the test. Nevertheless, things can't remain as they are now as cerr is not assignable. There may be a way to redirect is, however, by binding it to stdout... git-svn-id: https://svn.dealii.org/trunk@4758 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/base/reference.cc b/tests/base/reference.cc index 368106d913..1b54a605a5 100644 --- a/tests/base/reference.cc +++ b/tests/base/reference.cc @@ -47,7 +47,7 @@ int main() std::ofstream logfile("reference.output"); deallog.attach(logfile); deallog.depth_console(0); - + std::cerr = logfile; Test a("A"); const Test b("B"); SmartPointer r=&a;