From: Wolfgang Bangerth Date: Tue, 10 Jan 2023 15:51:53 +0000 (-0700) Subject: Do not write gratuitous output files into test directories. X-Git-Tag: v9.5.0-rc1~666^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e5f1f31706e798744a03945c1afa14aafcfb445;p=dealii.git Do not write gratuitous output files into test directories. I don't think we still need those. If someone needs to look at this test in detail again at a future time, it's easy enough to add these lines again by hand. --- diff --git a/tests/simplex/data_out_write_vtu_01.cc b/tests/simplex/data_out_write_vtu_01.cc index 445b8aa40e..b1c6761196 100644 --- a/tests/simplex/data_out_write_vtu_01.cc +++ b/tests/simplex/data_out_write_vtu_01.cc @@ -73,8 +73,6 @@ test(const FiniteElement &fe, const unsigned int n_components) RightHandSideFunction(n_components), solution); - static unsigned int counter = 0; - for (unsigned int n_subdivisions = 1; n_subdivisions <= 2; ++n_subdivisions) { DataOut data_out; @@ -85,13 +83,7 @@ test(const FiniteElement &fe, const unsigned int n_components) data_out.build_patches(mapping, n_subdivisions); - //#if false - std::ofstream output("test." + std::to_string(dim) + "." + - std::to_string(counter++) + ".vtu"); - data_out.write_vtu(output); - //#else data_out.write_vtu(deallog.get_file_stream()); - //#endif } }