From 5f6acd66b6b6c8b7ae53b3643c053678b66f8b23 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 27 May 2008 22:38:54 +0000 Subject: [PATCH] Write output to the logfile, not a separate one. git-svn-id: https://svn.dealii.org/trunk@16251 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/no_flux_04.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/deal.II/no_flux_04.cc b/tests/deal.II/no_flux_04.cc index 361a3d09d5..970524333b 100644 --- a/tests/deal.II/no_flux_04.cc +++ b/tests/deal.II/no_flux_04.cc @@ -93,7 +93,6 @@ void test (const Triangulation& tr, cm.distribute (v); - std::ofstream o("x.vtk"); DataOut data_out; data_out.attach_dof_handler (dh); @@ -106,7 +105,7 @@ void test (const Triangulation& tr, data_component_interpretation); data_out.build_patches (fe.degree); - data_out.write_vtk (o); + data_out.write_vtk (deallog.get_file_stream()); } -- 2.39.5