From: turcksin Date: Thu, 22 Aug 2013 19:38:19 +0000 (+0000) Subject: Change format of test files. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e440548379a08234a01d8e164856407203173e6d;p=dealii-svn.git Change format of test files. git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30436 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/accessor_01.cc b/tests/deal.II/accessor_01.cc index fe4fa138ca..90c7e02e52 100644 --- a/tests/deal.II/accessor_01.cc +++ b/tests/deal.II/accessor_01.cc @@ -71,7 +71,7 @@ void init_dofs (DoFHandler &dof, int main () { - initlog(__FILE__, true); + initlog(); deallog.depth_console(0); Triangulation<2> t2; diff --git a/tests/deal.II/accessor_02.cc b/tests/deal.II/accessor_02.cc index fe4fa138ca..90c7e02e52 100644 --- a/tests/deal.II/accessor_02.cc +++ b/tests/deal.II/accessor_02.cc @@ -71,7 +71,7 @@ void init_dofs (DoFHandler &dof, int main () { - initlog(__FILE__, true); + initlog(); deallog.depth_console(0); Triangulation<2> t2; diff --git a/tests/deal.II/block_info.cc b/tests/deal.II/block_info.cc index 1fbc6b3214..86ae81f1b9 100644 --- a/tests/deal.II/block_info.cc +++ b/tests/deal.II/block_info.cc @@ -84,7 +84,7 @@ void test_fe (const FiniteElement &fe) int main () { - initlog(__FILE__); + initlog(); FE_Q<2> q21(1); FE_Q<2> q22(2); diff --git a/tests/deal.II/block_info_02.cc b/tests/deal.II/block_info_02.cc index a166d4e277..0771adc025 100644 --- a/tests/deal.II/block_info_02.cc +++ b/tests/deal.II/block_info_02.cc @@ -89,7 +89,7 @@ void test_fe (const FiniteElement &fe) int main () { - initlog(__FILE__); + initlog(); FE_Q<2> q21(1); FE_Q<2> q22(2); diff --git a/tests/deal.II/block_list_01.cc b/tests/deal.II/block_list_01.cc index 3011295ad2..b6203abd85 100644 --- a/tests/deal.II/block_list_01.cc +++ b/tests/deal.II/block_list_01.cc @@ -51,7 +51,7 @@ test_block_list(const Triangulation &tr, const FiniteElement &fe) int main() { - initlog(__FILE__); + initlog(); deallog.push("2D"); test_global_refinement<2>(&test_block_list<2>); deallog.pop(); diff --git a/tests/deal.II/block_list_02.cc b/tests/deal.II/block_list_02.cc index 1b70769e5c..9a1701b259 100644 --- a/tests/deal.II/block_list_02.cc +++ b/tests/deal.II/block_list_02.cc @@ -78,7 +78,7 @@ test_block_list(const Triangulation &tr, const FiniteElement &fe) int main() { - initlog(__FILE__); + initlog(); deallog.push("2D"); test_global_refinement<2>(&test_block_list<2>); deallog.pop(); diff --git a/tests/deal.II/block_list_03.cc b/tests/deal.II/block_list_03.cc index 8742c3feb4..d8e1b702db 100644 --- a/tests/deal.II/block_list_03.cc +++ b/tests/deal.II/block_list_03.cc @@ -51,7 +51,7 @@ test_block_list(const Triangulation &tr, const FiniteElement &fe) int main() { - initlog(__FILE__); + initlog(); deallog.push("2D"); test_global_refinement<2>(&test_block_list<2>); deallog.pop(); diff --git a/tests/deal.II/block_list_04.cc b/tests/deal.II/block_list_04.cc index f9ce442f6e..9f52794ccb 100644 --- a/tests/deal.II/block_list_04.cc +++ b/tests/deal.II/block_list_04.cc @@ -60,7 +60,7 @@ test_block_list(const Triangulation &tr, const FiniteElement &fe) int main() { - initlog(__FILE__); + initlog(); deallog.push("2D"); test_global_refinement<2>(&test_block_list<2>); deallog.pop(); diff --git a/tests/deal.II/block_matrices.cc b/tests/deal.II/block_matrices.cc index c4120c02d4..9bbd33fe64 100644 --- a/tests/deal.II/block_matrices.cc +++ b/tests/deal.II/block_matrices.cc @@ -356,7 +356,7 @@ void LaplaceProblem::run () int main () { - std::ofstream logfile("block_matrices/output"); + std::ofstream logfile("output"); deallog << std::setprecision(2); deallog.attach(logfile); diff --git a/tests/deal.II/boundaries.cc b/tests/deal.II/boundaries.cc index 3bd448f554..60372d4f29 100644 --- a/tests/deal.II/boundaries.cc +++ b/tests/deal.II/boundaries.cc @@ -175,7 +175,7 @@ check () int main () { - initlog(__FILE__); + initlog(); deallog << std::setprecision (2); deallog << std::fixed; diff --git a/tests/deal.II/cell_similarity_crash_01.cc b/tests/deal.II/cell_similarity_crash_01.cc index ef28f0040b..3b1fc40d3e 100644 --- a/tests/deal.II/cell_similarity_crash_01.cc +++ b/tests/deal.II/cell_similarity_crash_01.cc @@ -71,7 +71,7 @@ void test() int main() { - initlog(__FILE__); + initlog(); deallog << std::setprecision (4); deallog.threshold_double(1.e-7); diff --git a/tests/deal.II/cell_similarity_crash_02.cc b/tests/deal.II/cell_similarity_crash_02.cc index 1ca5a5343c..856e1c7074 100644 --- a/tests/deal.II/cell_similarity_crash_02.cc +++ b/tests/deal.II/cell_similarity_crash_02.cc @@ -60,7 +60,7 @@ void test() int main() { - initlog(__FILE__); + initlog(); deallog << std::setprecision (4); deallog.threshold_double(1.e-7); diff --git a/tests/deal.II/coarsening_02.cc b/tests/deal.II/coarsening_02.cc index 27d00dba5d..9826f2f655 100644 --- a/tests/deal.II/coarsening_02.cc +++ b/tests/deal.II/coarsening_02.cc @@ -124,7 +124,7 @@ void test() int main() { - initlog(__FILE__); + initlog(); deallog.threshold_double(1.e-10); deallog.push("2d"); diff --git a/tests/deal.II/coarsening_02_1d.cc b/tests/deal.II/coarsening_02_1d.cc index f86a6cf1c8..e21446ed5e 100644 --- a/tests/deal.II/coarsening_02_1d.cc +++ b/tests/deal.II/coarsening_02_1d.cc @@ -144,7 +144,7 @@ void test() int main() { - initlog(__FILE__); + initlog(); deallog.threshold_double(1.e-10); deallog.push("1d"); diff --git a/tests/deal.II/coarsening_03.cc b/tests/deal.II/coarsening_03.cc index ddf86caec8..38bd19f78d 100644 --- a/tests/deal.II/coarsening_03.cc +++ b/tests/deal.II/coarsening_03.cc @@ -105,7 +105,7 @@ void test() int main() { - initlog(__FILE__); + initlog(); deallog.threshold_double(1.e-10); deallog.push("1d"); diff --git a/tests/deal.II/constraint_graph.cc b/tests/deal.II/constraint_graph.cc index f861fc275c..e8c42bfb37 100644 --- a/tests/deal.II/constraint_graph.cc +++ b/tests/deal.II/constraint_graph.cc @@ -68,7 +68,7 @@ void test () int main () { - initlog(__FILE__); + initlog(); deallogfile << std::setprecision(2); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/constraints.cc b/tests/deal.II/constraints.cc index 60a7719b7c..d5a45df154 100644 --- a/tests/deal.II/constraints.cc +++ b/tests/deal.II/constraints.cc @@ -39,7 +39,7 @@ #include -std::ofstream logfile("constraints/output"); +std::ofstream logfile("output"); void make_tria (Triangulation<3> &tria, int step) diff --git a/tests/deal.II/constraints_block_01.cc b/tests/deal.II/constraints_block_01.cc index 0ae8365d7c..dd3306a8e3 100644 --- a/tests/deal.II/constraints_block_01.cc +++ b/tests/deal.II/constraints_block_01.cc @@ -67,7 +67,7 @@ #include -std::ofstream logfile("constraints_block_01/output"); +std::ofstream logfile("output"); int main () diff --git a/tests/deal.II/constraints_hanging_nodes_bc.cc b/tests/deal.II/constraints_hanging_nodes_bc.cc index 2448c5d923..b254bb58a8 100644 --- a/tests/deal.II/constraints_hanging_nodes_bc.cc +++ b/tests/deal.II/constraints_hanging_nodes_bc.cc @@ -42,7 +42,7 @@ #include #include -std::ofstream logfile("constraints_hanging_nodes_bc/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/constraints_local_to_global.cc b/tests/deal.II/constraints_local_to_global.cc index 186824e692..68b58b8734 100644 --- a/tests/deal.II/constraints_local_to_global.cc +++ b/tests/deal.II/constraints_local_to_global.cc @@ -42,7 +42,7 @@ #include #include -std::ofstream logfile("constraints_local_to_global/output"); +std::ofstream logfile("output"); template void test () diff --git a/tests/deal.II/constraints_local_to_global_chunk.cc b/tests/deal.II/constraints_local_to_global_chunk.cc index 4326c3d393..045847c04c 100644 --- a/tests/deal.II/constraints_local_to_global_chunk.cc +++ b/tests/deal.II/constraints_local_to_global_chunk.cc @@ -44,7 +44,7 @@ #include #include -std::ofstream logfile("constraints_local_to_global_chunk/output"); +std::ofstream logfile("output"); template void test (unsigned int chunk_size) diff --git a/tests/deal.II/constraints_merge.cc b/tests/deal.II/constraints_merge.cc index 00dcc5fbcd..2a79f78ed6 100644 --- a/tests/deal.II/constraints_merge.cc +++ b/tests/deal.II/constraints_merge.cc @@ -26,7 +26,7 @@ #include -std::ofstream logfile("constraints_merge/output"); +std::ofstream logfile("output"); void merge_check () diff --git a/tests/deal.II/constraints_merge_02.cc b/tests/deal.II/constraints_merge_02.cc index e302be9040..2ee5cd0fca 100644 --- a/tests/deal.II/constraints_merge_02.cc +++ b/tests/deal.II/constraints_merge_02.cc @@ -27,7 +27,7 @@ #include -std::ofstream logfile("constraints_merge_02/output"); +std::ofstream logfile("output"); void merge_check () diff --git a/tests/deal.II/constraints_merge_03.cc b/tests/deal.II/constraints_merge_03.cc index 764c390195..5e7900e0a4 100644 --- a/tests/deal.II/constraints_merge_03.cc +++ b/tests/deal.II/constraints_merge_03.cc @@ -27,7 +27,7 @@ #include -std::ofstream logfile("constraints_merge_03/output"); +std::ofstream logfile("output"); void merge_check () diff --git a/tests/deal.II/constraints_merge_04.cc b/tests/deal.II/constraints_merge_04.cc index 4a219b6d88..aa33c2e2fa 100644 --- a/tests/deal.II/constraints_merge_04.cc +++ b/tests/deal.II/constraints_merge_04.cc @@ -27,7 +27,7 @@ #include -std::ofstream logfile("constraints_merge_04/output"); +std::ofstream logfile("output"); void merge_check () diff --git a/tests/deal.II/constraints_merge_05.cc b/tests/deal.II/constraints_merge_05.cc index 393e785fd1..0607809c5b 100644 --- a/tests/deal.II/constraints_merge_05.cc +++ b/tests/deal.II/constraints_merge_05.cc @@ -27,7 +27,7 @@ #include -std::ofstream logfile("constraints_merge_05/output"); +std::ofstream logfile("output"); void merge_check () diff --git a/tests/deal.II/constraints_merge_06.cc b/tests/deal.II/constraints_merge_06.cc index bfd014192b..28c5228bdb 100644 --- a/tests/deal.II/constraints_merge_06.cc +++ b/tests/deal.II/constraints_merge_06.cc @@ -29,7 +29,7 @@ #include -std::ofstream logfile("constraints_merge_06/output"); +std::ofstream logfile("output"); void merge_check () diff --git a/tests/deal.II/constraints_merge_07.cc b/tests/deal.II/constraints_merge_07.cc index 4d228f745c..3da2eb55de 100644 --- a/tests/deal.II/constraints_merge_07.cc +++ b/tests/deal.II/constraints_merge_07.cc @@ -30,7 +30,7 @@ #include -std::ofstream logfile("constraints_merge_07/output"); +std::ofstream logfile("output"); void merge_check () diff --git a/tests/deal.II/constraints_merge_08.cc b/tests/deal.II/constraints_merge_08.cc index 9489efcf71..68f1a30043 100644 --- a/tests/deal.II/constraints_merge_08.cc +++ b/tests/deal.II/constraints_merge_08.cc @@ -28,7 +28,7 @@ #include -std::ofstream logfile("constraints_merge_08/output"); +std::ofstream logfile("output"); void merge_check () diff --git a/tests/deal.II/constraints_merge_09.cc b/tests/deal.II/constraints_merge_09.cc index 1b61bd7b37..0035a97f5f 100644 --- a/tests/deal.II/constraints_merge_09.cc +++ b/tests/deal.II/constraints_merge_09.cc @@ -30,7 +30,7 @@ #include -std::ofstream logfile("constraints_merge_09/output"); +std::ofstream logfile("output"); void merge_check () diff --git a/tests/deal.II/create_laplace_matrix_01.cc b/tests/deal.II/create_laplace_matrix_01.cc index 3e9da66b3a..8fe3d8c6a3 100644 --- a/tests/deal.II/create_laplace_matrix_01.cc +++ b/tests/deal.II/create_laplace_matrix_01.cc @@ -124,7 +124,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_laplace_matrix_01b.cc b/tests/deal.II/create_laplace_matrix_01b.cc index 5710de825c..ee6d78db4a 100644 --- a/tests/deal.II/create_laplace_matrix_01b.cc +++ b/tests/deal.II/create_laplace_matrix_01b.cc @@ -116,7 +116,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_01b/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_laplace_matrix_02.cc b/tests/deal.II/create_laplace_matrix_02.cc index 95f62a231f..fce0f1e041 100644 --- a/tests/deal.II/create_laplace_matrix_02.cc +++ b/tests/deal.II/create_laplace_matrix_02.cc @@ -126,7 +126,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_laplace_matrix_02b.cc b/tests/deal.II/create_laplace_matrix_02b.cc index cabe84d96d..a2fa692f9a 100644 --- a/tests/deal.II/create_laplace_matrix_02b.cc +++ b/tests/deal.II/create_laplace_matrix_02b.cc @@ -118,7 +118,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_02b/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_laplace_matrix_03.cc b/tests/deal.II/create_laplace_matrix_03.cc index 398a304fbd..9a7d6469ef 100644 --- a/tests/deal.II/create_laplace_matrix_03.cc +++ b/tests/deal.II/create_laplace_matrix_03.cc @@ -124,7 +124,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_laplace_matrix_03b.cc b/tests/deal.II/create_laplace_matrix_03b.cc index 0d3d240592..e78826b433 100644 --- a/tests/deal.II/create_laplace_matrix_03b.cc +++ b/tests/deal.II/create_laplace_matrix_03b.cc @@ -118,7 +118,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_03b/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_laplace_matrix_04.cc b/tests/deal.II/create_laplace_matrix_04.cc index 2ca33b7f41..6d446efbd2 100644 --- a/tests/deal.II/create_laplace_matrix_04.cc +++ b/tests/deal.II/create_laplace_matrix_04.cc @@ -126,7 +126,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_04/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_laplace_matrix_04b.cc b/tests/deal.II/create_laplace_matrix_04b.cc index 24b7c0fbc2..c18c02bdb1 100644 --- a/tests/deal.II/create_laplace_matrix_04b.cc +++ b/tests/deal.II/create_laplace_matrix_04b.cc @@ -120,7 +120,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_04b/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_laplace_matrix_constraints_01.cc b/tests/deal.II/create_laplace_matrix_constraints_01.cc index a60b36f1f9..8cf5a83d95 100644 --- a/tests/deal.II/create_laplace_matrix_constraints_01.cc +++ b/tests/deal.II/create_laplace_matrix_constraints_01.cc @@ -125,7 +125,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_constraints_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); deallog.threshold_double(1e-10); diff --git a/tests/deal.II/create_laplace_matrix_constraints_02.cc b/tests/deal.II/create_laplace_matrix_constraints_02.cc index a3e19328ad..8dd77e3303 100644 --- a/tests/deal.II/create_laplace_matrix_constraints_02.cc +++ b/tests/deal.II/create_laplace_matrix_constraints_02.cc @@ -129,7 +129,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_constraints_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); deallog.threshold_double(1e-10); diff --git a/tests/deal.II/create_laplace_matrix_constraints_02b.cc b/tests/deal.II/create_laplace_matrix_constraints_02b.cc index a32375f41e..63a881731f 100644 --- a/tests/deal.II/create_laplace_matrix_constraints_02b.cc +++ b/tests/deal.II/create_laplace_matrix_constraints_02b.cc @@ -122,7 +122,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_constraints_02b/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); deallog.threshold_double(1e-10); diff --git a/tests/deal.II/create_laplace_matrix_constraints_03.cc b/tests/deal.II/create_laplace_matrix_constraints_03.cc index 8d1de5787d..4dd838d972 100644 --- a/tests/deal.II/create_laplace_matrix_constraints_03.cc +++ b/tests/deal.II/create_laplace_matrix_constraints_03.cc @@ -126,7 +126,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_constraints_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); deallog.threshold_double(1e-10); diff --git a/tests/deal.II/create_laplace_matrix_constraints_04.cc b/tests/deal.II/create_laplace_matrix_constraints_04.cc index 7126a1ea32..746caa276b 100644 --- a/tests/deal.II/create_laplace_matrix_constraints_04.cc +++ b/tests/deal.II/create_laplace_matrix_constraints_04.cc @@ -130,7 +130,7 @@ check () int main () { - std::ofstream logfile ("create_laplace_matrix_constraints_04/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); deallog.threshold_double(1e-10); diff --git a/tests/deal.II/create_mass_matrix_01.cc b/tests/deal.II/create_mass_matrix_01.cc index 006d25241c..dcf1ba4371 100644 --- a/tests/deal.II/create_mass_matrix_01.cc +++ b/tests/deal.II/create_mass_matrix_01.cc @@ -124,7 +124,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_mass_matrix_01b.cc b/tests/deal.II/create_mass_matrix_01b.cc index d77510ae5e..fd0fd14b69 100644 --- a/tests/deal.II/create_mass_matrix_01b.cc +++ b/tests/deal.II/create_mass_matrix_01b.cc @@ -116,7 +116,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_01b/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_mass_matrix_02.cc b/tests/deal.II/create_mass_matrix_02.cc index aafcc8e577..34de3cce9b 100644 --- a/tests/deal.II/create_mass_matrix_02.cc +++ b/tests/deal.II/create_mass_matrix_02.cc @@ -126,7 +126,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_mass_matrix_02b.cc b/tests/deal.II/create_mass_matrix_02b.cc index ba0a7bc47d..e4b52250ed 100644 --- a/tests/deal.II/create_mass_matrix_02b.cc +++ b/tests/deal.II/create_mass_matrix_02b.cc @@ -118,7 +118,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_02b/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_mass_matrix_03.cc b/tests/deal.II/create_mass_matrix_03.cc index 198e23d201..6c14bb7f0b 100644 --- a/tests/deal.II/create_mass_matrix_03.cc +++ b/tests/deal.II/create_mass_matrix_03.cc @@ -124,7 +124,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_mass_matrix_03b.cc b/tests/deal.II/create_mass_matrix_03b.cc index 7ed1500493..cece8fd253 100644 --- a/tests/deal.II/create_mass_matrix_03b.cc +++ b/tests/deal.II/create_mass_matrix_03b.cc @@ -118,7 +118,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_03b/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_mass_matrix_04.cc b/tests/deal.II/create_mass_matrix_04.cc index 03a2e002a1..d94a762088 100644 --- a/tests/deal.II/create_mass_matrix_04.cc +++ b/tests/deal.II/create_mass_matrix_04.cc @@ -126,7 +126,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_04/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_mass_matrix_04b.cc b/tests/deal.II/create_mass_matrix_04b.cc index e14c7afd7f..6acb897abf 100644 --- a/tests/deal.II/create_mass_matrix_04b.cc +++ b/tests/deal.II/create_mass_matrix_04b.cc @@ -120,7 +120,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_04b/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_mass_matrix_05.cc b/tests/deal.II/create_mass_matrix_05.cc index 329cf4b29d..5db71c52e1 100644 --- a/tests/deal.II/create_mass_matrix_05.cc +++ b/tests/deal.II/create_mass_matrix_05.cc @@ -114,7 +114,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_05/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_mass_matrix_constraints_01.cc b/tests/deal.II/create_mass_matrix_constraints_01.cc index 3c4456c117..73371c5a5b 100644 --- a/tests/deal.II/create_mass_matrix_constraints_01.cc +++ b/tests/deal.II/create_mass_matrix_constraints_01.cc @@ -125,7 +125,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_constraints_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); deallog.threshold_double(1e-10); diff --git a/tests/deal.II/create_mass_matrix_constraints_02.cc b/tests/deal.II/create_mass_matrix_constraints_02.cc index f2790eb80e..a526eb9648 100644 --- a/tests/deal.II/create_mass_matrix_constraints_02.cc +++ b/tests/deal.II/create_mass_matrix_constraints_02.cc @@ -129,7 +129,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_constraints_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); deallog.threshold_double(1e-10); diff --git a/tests/deal.II/create_mass_matrix_constraints_02b.cc b/tests/deal.II/create_mass_matrix_constraints_02b.cc index 59d2fa19bc..08adfd5e4d 100644 --- a/tests/deal.II/create_mass_matrix_constraints_02b.cc +++ b/tests/deal.II/create_mass_matrix_constraints_02b.cc @@ -122,7 +122,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_constraints_02b/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); deallog.threshold_double(1e-10); diff --git a/tests/deal.II/create_mass_matrix_constraints_03.cc b/tests/deal.II/create_mass_matrix_constraints_03.cc index 2ff87c0489..31335cba0d 100644 --- a/tests/deal.II/create_mass_matrix_constraints_03.cc +++ b/tests/deal.II/create_mass_matrix_constraints_03.cc @@ -126,7 +126,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_constraints_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); deallog.threshold_double(1e-10); diff --git a/tests/deal.II/create_mass_matrix_constraints_04.cc b/tests/deal.II/create_mass_matrix_constraints_04.cc index 25e0f6796d..9409c3ccb4 100644 --- a/tests/deal.II/create_mass_matrix_constraints_04.cc +++ b/tests/deal.II/create_mass_matrix_constraints_04.cc @@ -130,7 +130,7 @@ check () int main () { - std::ofstream logfile ("create_mass_matrix_constraints_04/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); deallog.threshold_double(1e-10); diff --git a/tests/deal.II/create_point_source.cc b/tests/deal.II/create_point_source.cc index b718ebe6aa..05ecb460a2 100644 --- a/tests/deal.II/create_point_source.cc +++ b/tests/deal.II/create_point_source.cc @@ -60,7 +60,7 @@ check () int main () { - std::ofstream logfile ("create_point_source/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/create_point_source_hp.cc b/tests/deal.II/create_point_source_hp.cc index 56cdeb3007..d7841cebeb 100644 --- a/tests/deal.II/create_point_source_hp.cc +++ b/tests/deal.II/create_point_source_hp.cc @@ -65,7 +65,7 @@ check () int main () { - std::ofstream logfile ("create_point_source_hp/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/data_out.cc b/tests/deal.II/data_out.cc index 6cd61496c5..d0603687ae 100644 --- a/tests/deal.II/data_out.cc +++ b/tests/deal.II/data_out.cc @@ -43,7 +43,7 @@ #include -std::ofstream logfile("data_out/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/data_out_postprocessor_01.cc b/tests/deal.II/data_out_postprocessor_01.cc index 27fb3e308a..217041916c 100644 --- a/tests/deal.II/data_out_postprocessor_01.cc +++ b/tests/deal.II/data_out_postprocessor_01.cc @@ -41,7 +41,7 @@ #include -std::ofstream logfile("data_out_postprocessor_01/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/data_out_postprocessor_scalar_01.cc b/tests/deal.II/data_out_postprocessor_scalar_01.cc index a51d60330b..ea77a5e037 100644 --- a/tests/deal.II/data_out_postprocessor_scalar_01.cc +++ b/tests/deal.II/data_out_postprocessor_scalar_01.cc @@ -44,7 +44,7 @@ #include -std::ofstream logfile("data_out_postprocessor_scalar_01/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/data_out_postprocessor_vector_01.cc b/tests/deal.II/data_out_postprocessor_vector_01.cc index 134b2a98a6..1094c0c806 100644 --- a/tests/deal.II/data_out_postprocessor_vector_01.cc +++ b/tests/deal.II/data_out_postprocessor_vector_01.cc @@ -44,7 +44,7 @@ #include -std::ofstream logfile("data_out_postprocessor_vector_01/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/derivative_approximation.cc b/tests/deal.II/derivative_approximation.cc index a26cf02a83..bca98d8570 100644 --- a/tests/deal.II/derivative_approximation.cc +++ b/tests/deal.II/derivative_approximation.cc @@ -80,7 +80,7 @@ check () int main () { - std::ofstream logfile ("derivative_approximation/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/derivative_approximation_2.cc b/tests/deal.II/derivative_approximation_2.cc index b99b170bba..6569b29871 100644 --- a/tests/deal.II/derivative_approximation_2.cc +++ b/tests/deal.II/derivative_approximation_2.cc @@ -245,7 +245,7 @@ void derivatives() int main() { - std::ofstream logfile("derivative_approximation_2/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/derivatives.cc b/tests/deal.II/derivatives.cc index 78bfc3c67f..35b71bb0ff 100644 --- a/tests/deal.II/derivatives.cc +++ b/tests/deal.II/derivatives.cc @@ -206,7 +206,7 @@ void loop () int main () { - std::ofstream logfile ("derivatives/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/distort_random.cc b/tests/deal.II/distort_random.cc index 58366669b5..ca97f1a25b 100644 --- a/tests/deal.II/distort_random.cc +++ b/tests/deal.II/distort_random.cc @@ -28,7 +28,7 @@ #include #include -std::ofstream logfile("distort_random/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/dof_accessor_01.cc b/tests/deal.II/dof_accessor_01.cc index fde9281cc5..361b7a6788 100644 --- a/tests/deal.II/dof_accessor_01.cc +++ b/tests/deal.II/dof_accessor_01.cc @@ -67,7 +67,7 @@ void test () int main () { - std::ofstream logfile("dof_accessor_01/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/dof_handler_number_cache.cc b/tests/deal.II/dof_handler_number_cache.cc index 2179b16b55..6880b2873b 100644 --- a/tests/deal.II/dof_handler_number_cache.cc +++ b/tests/deal.II/dof_handler_number_cache.cc @@ -107,7 +107,7 @@ void test() int main() { - std::ofstream logfile("dof_handler_number_cache/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/dof_handler_number_cache_02.cc b/tests/deal.II/dof_handler_number_cache_02.cc index 3559fa7c05..9b209d78dd 100644 --- a/tests/deal.II/dof_handler_number_cache_02.cc +++ b/tests/deal.II/dof_handler_number_cache_02.cc @@ -112,7 +112,7 @@ void test() int main() { - initlog(__FILE__); + initlog(); deallog.threshold_double(1.e-10); deallog.push("1d"); diff --git a/tests/deal.II/dof_renumbering.cc b/tests/deal.II/dof_renumbering.cc index 14b5907adc..a2b843ff5d 100644 --- a/tests/deal.II/dof_renumbering.cc +++ b/tests/deal.II/dof_renumbering.cc @@ -179,7 +179,7 @@ check () int main () { - std::ofstream logfile ("dof_renumbering/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/dof_renumbering_02.cc b/tests/deal.II/dof_renumbering_02.cc index bf43c42837..2b7d6bfc46 100644 --- a/tests/deal.II/dof_renumbering_02.cc +++ b/tests/deal.II/dof_renumbering_02.cc @@ -179,7 +179,7 @@ check () int main () { - std::ofstream logfile ("dof_renumbering_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/dof_renumbering_03.cc b/tests/deal.II/dof_renumbering_03.cc index 1fb0720e93..0686b5341d 100644 --- a/tests/deal.II/dof_renumbering_03.cc +++ b/tests/deal.II/dof_renumbering_03.cc @@ -116,7 +116,7 @@ check () int main () { - std::ofstream logfile ("dof_renumbering_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/dof_renumbering_04.cc b/tests/deal.II/dof_renumbering_04.cc index aada85a6f1..58da5678ea 100644 --- a/tests/deal.II/dof_renumbering_04.cc +++ b/tests/deal.II/dof_renumbering_04.cc @@ -116,7 +116,7 @@ check () int main () { - std::ofstream logfile ("dof_renumbering_04/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/dof_renumbering_04a.cc b/tests/deal.II/dof_renumbering_04a.cc index fa01980a5f..0a52b2ee6d 100644 --- a/tests/deal.II/dof_renumbering_04a.cc +++ b/tests/deal.II/dof_renumbering_04a.cc @@ -80,7 +80,7 @@ check () int main () { - std::ofstream logfile ("dof_renumbering_04a/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/dof_renumbering_05.cc b/tests/deal.II/dof_renumbering_05.cc index cf452e88e2..2403cab37c 100644 --- a/tests/deal.II/dof_renumbering_05.cc +++ b/tests/deal.II/dof_renumbering_05.cc @@ -116,7 +116,7 @@ check () int main () { - std::ofstream logfile ("dof_renumbering_05/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/dof_renumbering_06.cc b/tests/deal.II/dof_renumbering_06.cc index 8ef4708abe..f50e487379 100644 --- a/tests/deal.II/dof_renumbering_06.cc +++ b/tests/deal.II/dof_renumbering_06.cc @@ -116,7 +116,7 @@ check () int main () { - std::ofstream logfile ("dof_renumbering_06/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/dof_renumbering_07.cc b/tests/deal.II/dof_renumbering_07.cc index 8640b03a7e..db70f9a232 100644 --- a/tests/deal.II/dof_renumbering_07.cc +++ b/tests/deal.II/dof_renumbering_07.cc @@ -119,7 +119,7 @@ check () int main () { - std::ofstream logfile ("dof_renumbering_07/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/dof_renumbering_zorder_01.cc b/tests/deal.II/dof_renumbering_zorder_01.cc index f91737a821..7f76b88942 100644 --- a/tests/deal.II/dof_renumbering_zorder_01.cc +++ b/tests/deal.II/dof_renumbering_zorder_01.cc @@ -99,7 +99,7 @@ check () int main () { - std::ofstream logfile ("dof_renumbering_zorder_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/dof_renumbering_zorder_02.cc b/tests/deal.II/dof_renumbering_zorder_02.cc index 0209a06725..a5522fd2a5 100644 --- a/tests/deal.II/dof_renumbering_zorder_02.cc +++ b/tests/deal.II/dof_renumbering_zorder_02.cc @@ -117,7 +117,7 @@ check () int main () { - std::ofstream logfile ("dof_renumbering_zorder_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/dof_test.cc b/tests/deal.II/dof_test.cc index d0de02eb16..bf41611661 100644 --- a/tests/deal.II/dof_test.cc +++ b/tests/deal.II/dof_test.cc @@ -40,7 +40,7 @@ // 2: refinement of the circle at the boundary // 2: refinement of a wiggled area at the boundary -std::ofstream logfile("dof_test/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/error_estimator.cc b/tests/deal.II/error_estimator.cc index 4d5db1474c..31d0ef4e07 100644 --- a/tests/deal.II/error_estimator.cc +++ b/tests/deal.II/error_estimator.cc @@ -122,7 +122,7 @@ check () int main () { - std::ofstream logfile ("error_estimator/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/error_estimator_01.cc b/tests/deal.II/error_estimator_01.cc index 02b7260344..5fcb4df6e9 100644 --- a/tests/deal.II/error_estimator_01.cc +++ b/tests/deal.II/error_estimator_01.cc @@ -78,7 +78,7 @@ check () int main () { - std::ofstream logfile ("error_estimator_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extent_in_direction.cc b/tests/deal.II/extent_in_direction.cc index ac84d06d9d..989ee9b63f 100644 --- a/tests/deal.II/extent_in_direction.cc +++ b/tests/deal.II/extent_in_direction.cc @@ -108,7 +108,7 @@ void test() int main() { - std::ofstream logfile ("extent_in_direction/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (PRECISION); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/extract_dofs_by_component_01.cc b/tests/deal.II/extract_dofs_by_component_01.cc index 08232d9678..9784e1b2a3 100644 --- a/tests/deal.II/extract_dofs_by_component_01.cc +++ b/tests/deal.II/extract_dofs_by_component_01.cc @@ -78,7 +78,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_01_hp.cc b/tests/deal.II/extract_dofs_by_component_01_hp.cc index d213292efa..e0f248e7ac 100644 --- a/tests/deal.II/extract_dofs_by_component_01_hp.cc +++ b/tests/deal.II/extract_dofs_by_component_01_hp.cc @@ -82,7 +82,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_01_hp/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_01_mg.cc b/tests/deal.II/extract_dofs_by_component_01_mg.cc index e71fc9e712..a5b08ed2e9 100644 --- a/tests/deal.II/extract_dofs_by_component_01_mg.cc +++ b/tests/deal.II/extract_dofs_by_component_01_mg.cc @@ -83,7 +83,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_01_mg/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_01x.cc b/tests/deal.II/extract_dofs_by_component_01x.cc index 11e81aafbe..79f412f372 100644 --- a/tests/deal.II/extract_dofs_by_component_01x.cc +++ b/tests/deal.II/extract_dofs_by_component_01x.cc @@ -76,7 +76,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_01x/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_01y.cc b/tests/deal.II/extract_dofs_by_component_01y.cc index 955e5be02e..e7bbec2d07 100644 --- a/tests/deal.II/extract_dofs_by_component_01y.cc +++ b/tests/deal.II/extract_dofs_by_component_01y.cc @@ -80,7 +80,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_01y/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_02.cc b/tests/deal.II/extract_dofs_by_component_02.cc index c3603d4b60..f34d8217cf 100644 --- a/tests/deal.II/extract_dofs_by_component_02.cc +++ b/tests/deal.II/extract_dofs_by_component_02.cc @@ -78,7 +78,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_02_hp.cc b/tests/deal.II/extract_dofs_by_component_02_hp.cc index 46775e5638..3f15c5d81d 100644 --- a/tests/deal.II/extract_dofs_by_component_02_hp.cc +++ b/tests/deal.II/extract_dofs_by_component_02_hp.cc @@ -82,7 +82,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_02_hp/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_02_mg.cc b/tests/deal.II/extract_dofs_by_component_02_mg.cc index a695c9af2d..0c81f1c9af 100644 --- a/tests/deal.II/extract_dofs_by_component_02_mg.cc +++ b/tests/deal.II/extract_dofs_by_component_02_mg.cc @@ -84,7 +84,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_02_mg/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_03.cc b/tests/deal.II/extract_dofs_by_component_03.cc index a2fa5a03c7..40873795e4 100644 --- a/tests/deal.II/extract_dofs_by_component_03.cc +++ b/tests/deal.II/extract_dofs_by_component_03.cc @@ -73,7 +73,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_04.cc b/tests/deal.II/extract_dofs_by_component_04.cc index 80be002cba..2dd628492e 100644 --- a/tests/deal.II/extract_dofs_by_component_04.cc +++ b/tests/deal.II/extract_dofs_by_component_04.cc @@ -81,7 +81,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_04/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_05.cc b/tests/deal.II/extract_dofs_by_component_05.cc index 61716e082d..e0b8a55725 100644 --- a/tests/deal.II/extract_dofs_by_component_05.cc +++ b/tests/deal.II/extract_dofs_by_component_05.cc @@ -67,7 +67,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_05/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_05_hp.cc b/tests/deal.II/extract_dofs_by_component_05_hp.cc index c25e3ab14d..05931644d6 100644 --- a/tests/deal.II/extract_dofs_by_component_05_hp.cc +++ b/tests/deal.II/extract_dofs_by_component_05_hp.cc @@ -71,7 +71,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_05_hp/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_06.cc b/tests/deal.II/extract_dofs_by_component_06.cc index 38d6df17a8..062d38d3c7 100644 --- a/tests/deal.II/extract_dofs_by_component_06.cc +++ b/tests/deal.II/extract_dofs_by_component_06.cc @@ -67,7 +67,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_06/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/extract_dofs_by_component_06_hp.cc b/tests/deal.II/extract_dofs_by_component_06_hp.cc index 4dac12fddc..215e87b92d 100644 --- a/tests/deal.II/extract_dofs_by_component_06_hp.cc +++ b/tests/deal.II/extract_dofs_by_component_06_hp.cc @@ -71,7 +71,7 @@ check () int main () { - std::ofstream logfile ("extract_dofs_by_component_06_hp/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/face_orientations_3d.cc b/tests/deal.II/face_orientations_3d.cc index 88a290d13d..739445d436 100644 --- a/tests/deal.II/face_orientations_3d.cc +++ b/tests/deal.II/face_orientations_3d.cc @@ -35,7 +35,7 @@ #include -std::ofstream logfile("face_orientations_3d/output"); +std::ofstream logfile("output"); void test (const char *filename) diff --git a/tests/deal.II/fe_field.cc b/tests/deal.II/fe_field.cc index c8dea5c452..9240d08ceb 100644 --- a/tests/deal.II/fe_field.cc +++ b/tests/deal.II/fe_field.cc @@ -83,7 +83,7 @@ check () int main () { - initlog(__FILE__); + initlog(); deallog << std::setprecision (2); deallog << std::fixed; diff --git a/tests/deal.II/fe_values_extractor_01.cc b/tests/deal.II/fe_values_extractor_01.cc index bdfeb8fbdb..83fd1fed1a 100644 --- a/tests/deal.II/fe_values_extractor_01.cc +++ b/tests/deal.II/fe_values_extractor_01.cc @@ -28,7 +28,7 @@ int main() { - std::ofstream logfile ("fe_values_extractor_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_01.cc b/tests/deal.II/fe_values_view_01.cc index 508eb69c83..e0f3e1d58a 100644 --- a/tests/deal.II/fe_values_view_01.cc +++ b/tests/deal.II/fe_values_view_01.cc @@ -107,7 +107,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_02.cc b/tests/deal.II/fe_values_view_02.cc index bb552f0946..32c32e9a23 100644 --- a/tests/deal.II/fe_values_view_02.cc +++ b/tests/deal.II/fe_values_view_02.cc @@ -132,7 +132,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_03.cc b/tests/deal.II/fe_values_view_03.cc index 9bddf6a531..f0e57a117c 100644 --- a/tests/deal.II/fe_values_view_03.cc +++ b/tests/deal.II/fe_values_view_03.cc @@ -113,7 +113,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_04.cc b/tests/deal.II/fe_values_view_04.cc index 929a4ec56c..74eee71807 100644 --- a/tests/deal.II/fe_values_view_04.cc +++ b/tests/deal.II/fe_values_view_04.cc @@ -133,7 +133,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_04/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_05.cc b/tests/deal.II/fe_values_view_05.cc index 54e06df4a2..97fc058ebd 100644 --- a/tests/deal.II/fe_values_view_05.cc +++ b/tests/deal.II/fe_values_view_05.cc @@ -99,7 +99,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_05/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_06.cc b/tests/deal.II/fe_values_view_06.cc index e92f4fc619..a4fb1c78ce 100644 --- a/tests/deal.II/fe_values_view_06.cc +++ b/tests/deal.II/fe_values_view_06.cc @@ -100,7 +100,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_06/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_07.cc b/tests/deal.II/fe_values_view_07.cc index 2e9e144b35..d0ce6a04ef 100644 --- a/tests/deal.II/fe_values_view_07.cc +++ b/tests/deal.II/fe_values_view_07.cc @@ -100,7 +100,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_07/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_08.cc b/tests/deal.II/fe_values_view_08.cc index 4ecc8200f3..9215f4c530 100644 --- a/tests/deal.II/fe_values_view_08.cc +++ b/tests/deal.II/fe_values_view_08.cc @@ -101,7 +101,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_08/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_09.cc b/tests/deal.II/fe_values_view_09.cc index 06dc69f23d..2f2cff48c0 100644 --- a/tests/deal.II/fe_values_view_09.cc +++ b/tests/deal.II/fe_values_view_09.cc @@ -104,7 +104,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_09/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_10.cc b/tests/deal.II/fe_values_view_10.cc index a39b14aa20..b1436f6df9 100644 --- a/tests/deal.II/fe_values_view_10.cc +++ b/tests/deal.II/fe_values_view_10.cc @@ -105,7 +105,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_10/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_10_single_01.cc b/tests/deal.II/fe_values_view_10_single_01.cc index 199476af3f..4ac711fffa 100644 --- a/tests/deal.II/fe_values_view_10_single_01.cc +++ b/tests/deal.II/fe_values_view_10_single_01.cc @@ -107,7 +107,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_10_single_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_10_single_02.cc b/tests/deal.II/fe_values_view_10_single_02.cc index 0ed490de0b..20ecbbe073 100644 --- a/tests/deal.II/fe_values_view_10_single_02.cc +++ b/tests/deal.II/fe_values_view_10_single_02.cc @@ -107,7 +107,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_10_single_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_10_single_03.cc b/tests/deal.II/fe_values_view_10_single_03.cc index 3a448b6fdf..0d0cb82d17 100644 --- a/tests/deal.II/fe_values_view_10_single_03.cc +++ b/tests/deal.II/fe_values_view_10_single_03.cc @@ -107,7 +107,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_10_single_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_10_single_04.cc b/tests/deal.II/fe_values_view_10_single_04.cc index 69ef0735fc..923ab6b65a 100644 --- a/tests/deal.II/fe_values_view_10_single_04.cc +++ b/tests/deal.II/fe_values_view_10_single_04.cc @@ -107,7 +107,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_10_single_04/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_11.cc b/tests/deal.II/fe_values_view_11.cc index bb2e1d7a62..42328f17e8 100644 --- a/tests/deal.II/fe_values_view_11.cc +++ b/tests/deal.II/fe_values_view_11.cc @@ -105,7 +105,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_11/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_12.cc b/tests/deal.II/fe_values_view_12.cc index 30c978d5c4..3a26c309e5 100644 --- a/tests/deal.II/fe_values_view_12.cc +++ b/tests/deal.II/fe_values_view_12.cc @@ -106,7 +106,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_12/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_13.cc b/tests/deal.II/fe_values_view_13.cc index c04d5f0fe2..e357f01904 100644 --- a/tests/deal.II/fe_values_view_13.cc +++ b/tests/deal.II/fe_values_view_13.cc @@ -106,7 +106,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_13/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_14.cc b/tests/deal.II/fe_values_view_14.cc index 44ecf90ee0..8346626253 100644 --- a/tests/deal.II/fe_values_view_14.cc +++ b/tests/deal.II/fe_values_view_14.cc @@ -109,7 +109,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_14/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_15.cc b/tests/deal.II/fe_values_view_15.cc index e031f92156..7104b9ef35 100644 --- a/tests/deal.II/fe_values_view_15.cc +++ b/tests/deal.II/fe_values_view_15.cc @@ -110,7 +110,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_15/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_16.cc b/tests/deal.II/fe_values_view_16.cc index a6334795e5..e906d800df 100644 --- a/tests/deal.II/fe_values_view_16.cc +++ b/tests/deal.II/fe_values_view_16.cc @@ -111,7 +111,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_16/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_17.cc b/tests/deal.II/fe_values_view_17.cc index 660a502147..498fa3dae7 100644 --- a/tests/deal.II/fe_values_view_17.cc +++ b/tests/deal.II/fe_values_view_17.cc @@ -110,7 +110,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_17/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_18.cc b/tests/deal.II/fe_values_view_18.cc index 94ad1383a7..59dec4c5d3 100644 --- a/tests/deal.II/fe_values_view_18.cc +++ b/tests/deal.II/fe_values_view_18.cc @@ -115,7 +115,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_18/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_19.cc b/tests/deal.II/fe_values_view_19.cc index fcd60889c2..25e40dac85 100644 --- a/tests/deal.II/fe_values_view_19.cc +++ b/tests/deal.II/fe_values_view_19.cc @@ -110,7 +110,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_19/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_20.cc b/tests/deal.II/fe_values_view_20.cc index c8ca01d9b7..06efab4146 100644 --- a/tests/deal.II/fe_values_view_20.cc +++ b/tests/deal.II/fe_values_view_20.cc @@ -114,7 +114,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_20/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_21.cc b/tests/deal.II/fe_values_view_21.cc index 89c42097d0..f85d955c28 100644 --- a/tests/deal.II/fe_values_view_21.cc +++ b/tests/deal.II/fe_values_view_21.cc @@ -207,7 +207,7 @@ void MixedElastoPlasticity::run() int main() { - std::ofstream logfile ("fe_values_view_21/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_21_nonsymmetric.cc b/tests/deal.II/fe_values_view_21_nonsymmetric.cc index 43caefe349..5cab8bb4d3 100644 --- a/tests/deal.II/fe_values_view_21_nonsymmetric.cc +++ b/tests/deal.II/fe_values_view_21_nonsymmetric.cc @@ -207,7 +207,7 @@ void MixedElastoPlasticity::run() int main() { - std::ofstream logfile ("fe_values_view_21_nonsymmetric/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_22.cc b/tests/deal.II/fe_values_view_22.cc index 477513b693..90e84f93f0 100644 --- a/tests/deal.II/fe_values_view_22.cc +++ b/tests/deal.II/fe_values_view_22.cc @@ -238,7 +238,7 @@ void MixedElastoPlasticity::run() int main() { - std::ofstream logfile ("fe_values_view_22/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_23.cc b/tests/deal.II/fe_values_view_23.cc index 9b5a5b6ca7..3f99ca5ceb 100644 --- a/tests/deal.II/fe_values_view_23.cc +++ b/tests/deal.II/fe_values_view_23.cc @@ -102,7 +102,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_23/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_23_nonsymmetric.cc b/tests/deal.II/fe_values_view_23_nonsymmetric.cc index ed976789ed..b2b3918294 100644 --- a/tests/deal.II/fe_values_view_23_nonsymmetric.cc +++ b/tests/deal.II/fe_values_view_23_nonsymmetric.cc @@ -102,7 +102,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_23_nonsymmetric/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_24.cc b/tests/deal.II/fe_values_view_24.cc index d625efe5fd..dbf9c01df3 100644 --- a/tests/deal.II/fe_values_view_24.cc +++ b/tests/deal.II/fe_values_view_24.cc @@ -96,7 +96,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_24/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_24_nonsymmetric.cc b/tests/deal.II/fe_values_view_24_nonsymmetric.cc index 7f8bd77b33..f991583f54 100644 --- a/tests/deal.II/fe_values_view_24_nonsymmetric.cc +++ b/tests/deal.II/fe_values_view_24_nonsymmetric.cc @@ -96,7 +96,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("fe_values_view_24_nonsymmetric/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_25.cc b/tests/deal.II/fe_values_view_25.cc index eb25c61b9b..a6a4f34247 100644 --- a/tests/deal.II/fe_values_view_25.cc +++ b/tests/deal.II/fe_values_view_25.cc @@ -93,7 +93,7 @@ void test_hyper_cube() int main() { - std::ofstream logfile ("fe_values_view_25/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_25_nonsymmetric.cc b/tests/deal.II/fe_values_view_25_nonsymmetric.cc index f1fe7ad95c..d2231e87ae 100644 --- a/tests/deal.II/fe_values_view_25_nonsymmetric.cc +++ b/tests/deal.II/fe_values_view_25_nonsymmetric.cc @@ -93,7 +93,7 @@ void test_hyper_cube() int main() { - std::ofstream logfile ("fe_values_view_25_nonsymmetric/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_invalid_01.cc b/tests/deal.II/fe_values_view_invalid_01.cc index 0305aacb26..7ccd86a229 100644 --- a/tests/deal.II/fe_values_view_invalid_01.cc +++ b/tests/deal.II/fe_values_view_invalid_01.cc @@ -78,7 +78,7 @@ int main() { deal_II_exceptions::disable_abort_on_exception(); - std::ofstream logfile ("fe_values_view_invalid_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_invalid_02.cc b/tests/deal.II/fe_values_view_invalid_02.cc index cda1e4c97c..5aa6f961a2 100644 --- a/tests/deal.II/fe_values_view_invalid_02.cc +++ b/tests/deal.II/fe_values_view_invalid_02.cc @@ -78,7 +78,7 @@ int main() { deal_II_exceptions::disable_abort_on_exception(); - std::ofstream logfile ("fe_values_view_invalid_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_invalid_03.cc b/tests/deal.II/fe_values_view_invalid_03.cc index b7ae2c3206..b84e1c80e2 100644 --- a/tests/deal.II/fe_values_view_invalid_03.cc +++ b/tests/deal.II/fe_values_view_invalid_03.cc @@ -78,7 +78,7 @@ int main() { deal_II_exceptions::disable_abort_on_exception(); - std::ofstream logfile ("fe_values_view_invalid_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_invalid_03_nonsymmetric.cc b/tests/deal.II/fe_values_view_invalid_03_nonsymmetric.cc index d7e828aadf..f3b311e26c 100644 --- a/tests/deal.II/fe_values_view_invalid_03_nonsymmetric.cc +++ b/tests/deal.II/fe_values_view_invalid_03_nonsymmetric.cc @@ -78,7 +78,7 @@ int main() { deal_II_exceptions::disable_abort_on_exception(); - std::ofstream logfile ("fe_values_view_invalid_03_nonsymmetric/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/fe_values_view_tensor_01.cc b/tests/deal.II/fe_values_view_tensor_01.cc index 4255a3b121..a6d3238bb6 100644 --- a/tests/deal.II/fe_values_view_tensor_01.cc +++ b/tests/deal.II/fe_values_view_tensor_01.cc @@ -232,7 +232,7 @@ void check() int main() { - std::ofstream logfile ("fe_values_view_tensor_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/filtered_iterator.cc b/tests/deal.II/filtered_iterator.cc index 0eef1655ba..62c86d2544 100644 --- a/tests/deal.II/filtered_iterator.cc +++ b/tests/deal.II/filtered_iterator.cc @@ -33,7 +33,7 @@ #include -std::ofstream logfile("filtered_iterator/output"); +std::ofstream logfile("output"); DeclException2 (ExcNumberMismatch, diff --git a/tests/deal.II/filtered_iterator_02.cc b/tests/deal.II/filtered_iterator_02.cc index da051cd77f..3531ea63aa 100644 --- a/tests/deal.II/filtered_iterator_02.cc +++ b/tests/deal.II/filtered_iterator_02.cc @@ -33,7 +33,7 @@ #include -std::ofstream logfile("filtered_iterator_02/output"); +std::ofstream logfile("output"); DeclException2 (ExcNumberMismatch, diff --git a/tests/deal.II/filtered_iterator_03.cc b/tests/deal.II/filtered_iterator_03.cc index 5b8ad505d2..56a4b27b82 100644 --- a/tests/deal.II/filtered_iterator_03.cc +++ b/tests/deal.II/filtered_iterator_03.cc @@ -33,7 +33,7 @@ #include -std::ofstream logfile("filtered_iterator_03/output"); +std::ofstream logfile("output"); DeclException2 (ExcNumberMismatch, diff --git a/tests/deal.II/filtered_matrix.cc b/tests/deal.II/filtered_matrix.cc index f8cffa5add..520746fd07 100644 --- a/tests/deal.II/filtered_matrix.cc +++ b/tests/deal.II/filtered_matrix.cc @@ -198,7 +198,7 @@ check () int main () { - std::ofstream logfile ("filtered_matrix/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/get_finest_common_cells_01.cc b/tests/deal.II/get_finest_common_cells_01.cc index e08ea054d3..951f008987 100644 --- a/tests/deal.II/get_finest_common_cells_01.cc +++ b/tests/deal.II/get_finest_common_cells_01.cc @@ -67,7 +67,7 @@ void test() int main() { - std::ofstream logfile ("get_finest_common_cells_01/output"); + std::ofstream logfile ("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/get_finest_common_cells_02.cc b/tests/deal.II/get_finest_common_cells_02.cc index efba757a5a..747c2861ae 100644 --- a/tests/deal.II/get_finest_common_cells_02.cc +++ b/tests/deal.II/get_finest_common_cells_02.cc @@ -70,7 +70,7 @@ void test() int main() { - std::ofstream logfile ("get_finest_common_cells_02/output"); + std::ofstream logfile ("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/get_finest_common_cells_03.cc b/tests/deal.II/get_finest_common_cells_03.cc index 3bb1fd2741..3004d78381 100644 --- a/tests/deal.II/get_finest_common_cells_03.cc +++ b/tests/deal.II/get_finest_common_cells_03.cc @@ -70,7 +70,7 @@ void test() int main() { - std::ofstream logfile ("get_finest_common_cells_03/output"); + std::ofstream logfile ("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/get_finest_common_cells_04.cc b/tests/deal.II/get_finest_common_cells_04.cc index 30625d86f1..f1299ec9b5 100644 --- a/tests/deal.II/get_finest_common_cells_04.cc +++ b/tests/deal.II/get_finest_common_cells_04.cc @@ -70,7 +70,7 @@ void test() int main() { - std::ofstream logfile ("get_finest_common_cells_04/output"); + std::ofstream logfile ("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/grid_generator_01.cc b/tests/deal.II/grid_generator_01.cc index b1180a1a14..c640139147 100644 --- a/tests/deal.II/grid_generator_01.cc +++ b/tests/deal.II/grid_generator_01.cc @@ -30,7 +30,7 @@ #include #include -std::ofstream logfile("grid_generator_01/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/grid_hyper_shell.cc b/tests/deal.II/grid_hyper_shell.cc index d3a1421e14..0b196be527 100644 --- a/tests/deal.II/grid_hyper_shell.cc +++ b/tests/deal.II/grid_hyper_shell.cc @@ -35,7 +35,7 @@ #include #include -std::ofstream logfile("grid_hyper_shell/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/grid_hyper_shell_02.cc b/tests/deal.II/grid_hyper_shell_02.cc index 0b9526e70a..9ae80cc543 100644 --- a/tests/deal.II/grid_hyper_shell_02.cc +++ b/tests/deal.II/grid_hyper_shell_02.cc @@ -34,7 +34,7 @@ #include #include -std::ofstream logfile("grid_hyper_shell_02/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/grid_hyper_shell_03.cc b/tests/deal.II/grid_hyper_shell_03.cc index 6abf8cf79f..ae1ac3d012 100644 --- a/tests/deal.II/grid_hyper_shell_03.cc +++ b/tests/deal.II/grid_hyper_shell_03.cc @@ -34,7 +34,7 @@ #include #include -std::ofstream logfile("grid_hyper_shell_03/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/grid_hyper_shell_04.cc b/tests/deal.II/grid_hyper_shell_04.cc index 5ba1eb456e..e51778c728 100644 --- a/tests/deal.II/grid_hyper_shell_04.cc +++ b/tests/deal.II/grid_hyper_shell_04.cc @@ -34,7 +34,7 @@ #include #include -std::ofstream logfile("grid_hyper_shell_04/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/grid_hyper_shell_05.cc b/tests/deal.II/grid_hyper_shell_05.cc index 1469a4f893..06db445365 100644 --- a/tests/deal.II/grid_hyper_shell_05.cc +++ b/tests/deal.II/grid_hyper_shell_05.cc @@ -40,7 +40,7 @@ #include #include -std::ofstream logfile("grid_hyper_shell_05/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/grid_in.cc b/tests/deal.II/grid_in.cc index 5107755df8..0e798ed36f 100644 --- a/tests/deal.II/grid_in.cc +++ b/tests/deal.II/grid_in.cc @@ -32,7 +32,7 @@ #include #include -std::ofstream logfile("grid_in/output"); +std::ofstream logfile("output"); template @@ -41,7 +41,7 @@ void test1 () Triangulation tria; GridIn gi; gi.attach_triangulation (tria); - std::ifstream in ("grid_in/2d.inp"); + std::ifstream in ("2d.inp"); gi.read_ucd (in); GridOut grid_out; @@ -72,7 +72,7 @@ void test2 () Triangulation tria (Triangulation::none, true); GridIn gi; gi.attach_triangulation (tria); - std::ifstream in ("grid_in/2d.xda"); + std::ifstream in ("2d.xda"); try { gi.read_xda (in); @@ -103,7 +103,7 @@ void test3 () Triangulation tria; GridIn gi; gi.attach_triangulation (tria); - gi.read ("grid_in/2d.nc"); + gi.read ("2d.nc"); GridOut grid_out; std::ofstream gnufile("grid_in_2d.gnuplot"); @@ -137,8 +137,8 @@ void check_file (const std::string name, void filename_resolution() { - check_file<2> (std::string("grid_in/2d"), GridIn<2>::ucd); - check_file<2> (std::string("grid_in/2d"), GridIn<2>::xda); + check_file<2> (std::string("2d"), GridIn<2>::ucd); + check_file<2> (std::string("2d"), GridIn<2>::xda); } diff --git a/tests/deal.II/grid_in_02.cc b/tests/deal.II/grid_in_02.cc index bf35c0c57a..470efab763 100644 --- a/tests/deal.II/grid_in_02.cc +++ b/tests/deal.II/grid_in_02.cc @@ -40,7 +40,7 @@ #include #include -std::ofstream logfile("grid_in_02/output"); +std::ofstream logfile("output"); template @@ -56,7 +56,7 @@ void test2 () Triangulation tria (Triangulation::none, true); GridIn gi; gi.attach_triangulation (tria); - std::ifstream in ("grid_in_02/2d.xda"); + std::ifstream in ("2d.xda"); try { gi.read_xda (in); diff --git a/tests/deal.II/grid_in_3d.cc b/tests/deal.II/grid_in_3d.cc index 9ad9f9a9c2..d1af15d7db 100644 --- a/tests/deal.II/grid_in_3d.cc +++ b/tests/deal.II/grid_in_3d.cc @@ -35,7 +35,7 @@ #include #include -std::ofstream logfile("grid_in_3d/output"); +std::ofstream logfile("output"); void test (const char *filename) @@ -77,7 +77,7 @@ void test1() Triangulation<3> tria; GridIn<3> gi; gi.attach_triangulation (tria); - gi.read ("grid_in_3d/1.nc"); + gi.read ("1.nc"); GridOut grid_out; std::ofstream gnufile("square.gnuplot"); @@ -94,16 +94,16 @@ int main () deallog.depth_console(0); deallog.threshold_double(1.e-10); - test ("grid_in_3d/1.in"); - test ("grid_in_3d/2.in"); - test ("grid_in_3d/3.in"); - test ("grid_in_3d/4.in"); + test ("1.in"); + test ("2.in"); + test ("3.in"); + test ("4.in"); - test ("grid_in_3d/evil_0.in"); - test ("grid_in_3d/evil_1.in"); - test ("grid_in_3d/evil_2.in"); - test ("grid_in_3d/evil_3.in"); - test ("grid_in_3d/evil_4.in"); + test ("evil_0.in"); + test ("evil_1.in"); + test ("evil_2.in"); + test ("evil_3.in"); + test ("evil_4.in"); // test1 needs NetCDF // test1 (); diff --git a/tests/deal.II/grid_in_3d_02.cc b/tests/deal.II/grid_in_3d_02.cc index 1c3313391b..f44bd0a1c2 100644 --- a/tests/deal.II/grid_in_3d_02.cc +++ b/tests/deal.II/grid_in_3d_02.cc @@ -40,7 +40,7 @@ #include #include -std::ofstream logfile("grid_in_3d_02/output"); +std::ofstream logfile("output"); void test (const char *filename) @@ -97,6 +97,6 @@ int main () deallog.depth_console(0); deallog.threshold_double(1.e-10); - test ("grid_in_3d_02/747.ucd"); + test ("747.ucd"); } diff --git a/tests/deal.II/grid_in_msh.cc b/tests/deal.II/grid_in_msh.cc index a70784187c..7dc0ade009 100644 --- a/tests/deal.II/grid_in_msh.cc +++ b/tests/deal.II/grid_in_msh.cc @@ -33,7 +33,7 @@ #include #include -std::ofstream logfile("grid_in_msh/output"); +std::ofstream logfile("output"); template @@ -55,7 +55,7 @@ void check_file (const std::string name, void filename_resolution() { - check_file<2> (std::string("grid_in_msh/mesh"), GridIn<2>::msh); + check_file<2> (std::string("mesh"), GridIn<2>::msh); } diff --git a/tests/deal.II/grid_in_msh_02.cc b/tests/deal.II/grid_in_msh_02.cc index 5a070b128e..1f71d6154b 100644 --- a/tests/deal.II/grid_in_msh_02.cc +++ b/tests/deal.II/grid_in_msh_02.cc @@ -35,7 +35,7 @@ #include #include -std::ofstream logfile("grid_in_msh_02/output"); +std::ofstream logfile("output"); template @@ -57,7 +57,7 @@ void check_file (const std::string name, void filename_resolution() { - check_file<2> (std::string("grid_in_msh_02/mesh"), GridIn<2>::msh); + check_file<2> (std::string("mesh"), GridIn<2>::msh); } diff --git a/tests/deal.II/grid_in_msh_03.cc b/tests/deal.II/grid_in_msh_03.cc index a9b1c5f1de..1f71d6154b 100644 --- a/tests/deal.II/grid_in_msh_03.cc +++ b/tests/deal.II/grid_in_msh_03.cc @@ -35,7 +35,7 @@ #include #include -std::ofstream logfile("grid_in_msh_03/output"); +std::ofstream logfile("output"); template @@ -57,7 +57,7 @@ void check_file (const std::string name, void filename_resolution() { - check_file<2> (std::string("grid_in_msh_03/mesh"), GridIn<2>::msh); + check_file<2> (std::string("mesh"), GridIn<2>::msh); } diff --git a/tests/deal.II/grid_in_msh_version_1.cc b/tests/deal.II/grid_in_msh_version_1.cc index a3d0006cbc..d5ea54052f 100644 --- a/tests/deal.II/grid_in_msh_version_1.cc +++ b/tests/deal.II/grid_in_msh_version_1.cc @@ -35,7 +35,7 @@ #include #include -std::ofstream logfile("grid_in_msh_version_1/output"); +std::ofstream logfile("output"); template @@ -57,8 +57,8 @@ void check_file (const std::string name, void filename_resolution() { - check_file<2> (std::string("grid_in_msh_version_1/input_v1"), GridIn<2>::msh); - check_file<2> (std::string("grid_in_msh_version_1/input_v2"), GridIn<2>::msh); + check_file<2> (std::string("input_v1"), GridIn<2>::msh); + check_file<2> (std::string("input_v2"), GridIn<2>::msh); } diff --git a/tests/deal.II/grid_in_msh_version_2.cc b/tests/deal.II/grid_in_msh_version_2.cc index f3ff3f0fe3..93051a9b37 100644 --- a/tests/deal.II/grid_in_msh_version_2.cc +++ b/tests/deal.II/grid_in_msh_version_2.cc @@ -34,7 +34,7 @@ #include #include -std::ofstream logfile("grid_in_msh_version_2/output"); +std::ofstream logfile("output"); template @@ -56,8 +56,8 @@ void check_file (const std::string name, void filename_resolution() { - check_file<2> (std::string("grid_in_msh_version_2/hole81"), GridIn<2>::msh); - check_file<2> (std::string("grid_in_msh_version_2/hole8170"), GridIn<2>::msh); + check_file<2> (std::string("hole81"), GridIn<2>::msh); + check_file<2> (std::string("hole8170"), GridIn<2>::msh); } diff --git a/tests/deal.II/grid_in_tecplot.cc b/tests/deal.II/grid_in_tecplot.cc index dd755da38a..ce97d05117 100644 --- a/tests/deal.II/grid_in_tecplot.cc +++ b/tests/deal.II/grid_in_tecplot.cc @@ -26,7 +26,7 @@ #include #include -std::ofstream logfile("grid_in_tecplot/output"); +std::ofstream logfile("output"); template @@ -47,9 +47,9 @@ void test (const std::string &infilename) int main () { - test<2> ("grid_in_tecplot/1.dat"); - test<2> ("grid_in_tecplot/2.dat"); - test<2> ("grid_in_tecplot/3.dat"); - test<2> ("grid_in_tecplot/4.dat"); + test<2> ("1.dat"); + test<2> ("2.dat"); + test<2> ("3.dat"); + test<2> ("4.dat"); } diff --git a/tests/deal.II/grid_in_unv_2d.cc b/tests/deal.II/grid_in_unv_2d.cc index e92ecda87a..c062659ded 100644 --- a/tests/deal.II/grid_in_unv_2d.cc +++ b/tests/deal.II/grid_in_unv_2d.cc @@ -36,7 +36,7 @@ #include #include -std::ofstream logfile("grid_in_unv_2d/output"); +std::ofstream logfile("output"); template @@ -58,8 +58,8 @@ void check_file (const std::string name, void filename_resolution() { - check_file<2> (std::string("grid_in_unv_2d/test1427"), GridIn<2>::unv); - check_file<2> (std::string("grid_in_unv_2d/test46"), GridIn<2>::unv); + check_file<2> (std::string("test1427"), GridIn<2>::unv); + check_file<2> (std::string("test46"), GridIn<2>::unv); } diff --git a/tests/deal.II/grid_in_unv_3d.cc b/tests/deal.II/grid_in_unv_3d.cc index 04ddf3635e..27d9b8bcf9 100644 --- a/tests/deal.II/grid_in_unv_3d.cc +++ b/tests/deal.II/grid_in_unv_3d.cc @@ -36,7 +36,7 @@ #include #include -std::ofstream logfile("grid_in_unv_3d/output"); +std::ofstream logfile("output"); template @@ -58,7 +58,7 @@ void check_file (const std::string name, void filename_resolution() { - check_file<3> (std::string("grid_in_unv_3d/3D"), GridIn<3>::unv); + check_file<3> (std::string("3D"), GridIn<3>::unv); } diff --git a/tests/deal.II/grid_invert.cc b/tests/deal.II/grid_invert.cc index dd96a8fb25..7b757d60e6 100644 --- a/tests/deal.II/grid_invert.cc +++ b/tests/deal.II/grid_invert.cc @@ -25,7 +25,7 @@ #include #include -std::ofstream logfile("grid_invert/output"); +std::ofstream logfile("output"); template void test (bool second_case=false) diff --git a/tests/deal.II/grid_out.cc b/tests/deal.II/grid_out.cc index 282408d6d1..be84422aae 100644 --- a/tests/deal.II/grid_out.cc +++ b/tests/deal.II/grid_out.cc @@ -29,7 +29,7 @@ #include -std::ofstream logfile("grid_out/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/grid_out_02.cc b/tests/deal.II/grid_out_02.cc index b521d3d872..8e29f0050f 100644 --- a/tests/deal.II/grid_out_02.cc +++ b/tests/deal.II/grid_out_02.cc @@ -35,7 +35,7 @@ #include -std::ofstream logfile("grid_out_02/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/grid_out_03.cc b/tests/deal.II/grid_out_03.cc index 4e720b87db..abdd76290c 100644 --- a/tests/deal.II/grid_out_03.cc +++ b/tests/deal.II/grid_out_03.cc @@ -34,7 +34,7 @@ #include -std::ofstream logfile("grid_out_03/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/grid_out_04.cc b/tests/deal.II/grid_out_04.cc index 6e5d873c99..d50adaf3ad 100644 --- a/tests/deal.II/grid_out_04.cc +++ b/tests/deal.II/grid_out_04.cc @@ -34,7 +34,7 @@ #include -std::ofstream logfile("grid_out_04/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/grid_out_05.cc b/tests/deal.II/grid_out_05.cc index 4f2b97ab79..abdd76290c 100644 --- a/tests/deal.II/grid_out_05.cc +++ b/tests/deal.II/grid_out_05.cc @@ -34,7 +34,7 @@ #include -std::ofstream logfile("grid_out_05/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/grid_output_input.cc b/tests/deal.II/grid_output_input.cc index 8b001c6400..7ec3897f18 100644 --- a/tests/deal.II/grid_output_input.cc +++ b/tests/deal.II/grid_output_input.cc @@ -43,7 +43,7 @@ void test(std::ostream &out) CylinderBoundary boundary(.3, 2); tr.set_boundary(1, boundary); { - std::ofstream grid_file("grid_output_input/coarse_grid.inp"); + std::ofstream grid_file("coarse_grid.inp"); go.write_ucd(tr, grid_file); grid_file.close(); } @@ -58,7 +58,7 @@ void test(std::ostream &out) gi.attach_triangulation(tr); { deallog << "Read coarse grid" << std::endl; - std::ifstream grid_file("grid_output_input/coarse_grid.inp"); + std::ifstream grid_file("coarse_grid.inp"); gi.read_ucd(grid_file); grid_file.close(); } @@ -69,7 +69,7 @@ void test(std::ostream &out) go.write_ucd(tr, out); { - std::ofstream grid_file("grid_output_input/grid.msh"); + std::ofstream grid_file("grid.msh"); go.write_msh(tr, grid_file); grid_file.close(); } @@ -80,7 +80,7 @@ void test(std::ostream &out) int main() { - std::ofstream logfile("grid_output_input/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/grid_parallelepiped.cc b/tests/deal.II/grid_parallelepiped.cc index 1f3c2612a2..fbea313135 100644 --- a/tests/deal.II/grid_parallelepiped.cc +++ b/tests/deal.II/grid_parallelepiped.cc @@ -33,7 +33,7 @@ #include // Output -std::ofstream logfile ("grid_parallelepiped/output"); +std::ofstream logfile ("output"); // The simplest test case is to create a parallelepiped grid, output // the result, and hope for the best. diff --git a/tests/deal.II/grid_parallelepiped_01.cc b/tests/deal.II/grid_parallelepiped_01.cc index 620f509fd3..7c3641d9be 100644 --- a/tests/deal.II/grid_parallelepiped_01.cc +++ b/tests/deal.II/grid_parallelepiped_01.cc @@ -34,7 +34,7 @@ #include // Output -std::ofstream logfile ("grid_parallelepiped_01/output"); +std::ofstream logfile ("output"); // As sketched in the deal.II docs, the parallelepiped class is just a // hyper_rectangle in 1d and a parallelogram in 2d. That can checked diff --git a/tests/deal.II/grid_parallelepiped_02.cc b/tests/deal.II/grid_parallelepiped_02.cc index e6afd18b3c..a9af667fa5 100644 --- a/tests/deal.II/grid_parallelepiped_02.cc +++ b/tests/deal.II/grid_parallelepiped_02.cc @@ -34,7 +34,7 @@ #include // Output -std::ofstream logfile ("grid_parallelepiped_02/output"); +std::ofstream logfile ("output"); // This test creates a parallelepiped (one element) and the same // parallelepiped (one element); because the code that makes the two diff --git a/tests/deal.II/grid_parallelepiped_03.cc b/tests/deal.II/grid_parallelepiped_03.cc index 9196c2eb8d..101655e7a1 100644 --- a/tests/deal.II/grid_parallelepiped_03.cc +++ b/tests/deal.II/grid_parallelepiped_03.cc @@ -33,7 +33,7 @@ #include // Output -std::ofstream logfile ("grid_parallelepiped_03/output"); +std::ofstream logfile ("output"); // The simplest test case is to create a parallelepiped grid with a // number of subdivisions and output the result. diff --git a/tests/deal.II/grid_test.cc b/tests/deal.II/grid_test.cc index a4813e3719..1b333ea250 100644 --- a/tests/deal.II/grid_test.cc +++ b/tests/deal.II/grid_test.cc @@ -31,7 +31,7 @@ #include #include -std::ofstream logfile("grid_test/output"); +std::ofstream logfile("output"); // 1: continuous refinement of the unit square always in the middle // 2: refinement of the circle at the boundary diff --git a/tests/deal.II/grid_tools.cc b/tests/deal.II/grid_tools.cc index b1ab157282..5bd79103ac 100644 --- a/tests/deal.II/grid_tools.cc +++ b/tests/deal.II/grid_tools.cc @@ -26,7 +26,7 @@ #include #include -std::ofstream logfile("grid_tools/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/grid_tools_02.cc b/tests/deal.II/grid_tools_02.cc index fbe8b1aecf..04e8c5e1b8 100644 --- a/tests/deal.II/grid_tools_02.cc +++ b/tests/deal.II/grid_tools_02.cc @@ -29,7 +29,7 @@ #include #include -std::ofstream logfile("grid_tools_02/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/grid_tools_03.cc b/tests/deal.II/grid_tools_03.cc index 890a043448..b342d00ef7 100644 --- a/tests/deal.II/grid_tools_03.cc +++ b/tests/deal.II/grid_tools_03.cc @@ -29,7 +29,7 @@ #include #include -std::ofstream logfile("grid_tools_03/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/grid_tools_04.cc b/tests/deal.II/grid_tools_04.cc index 7a2e03e1c9..ada8d8c7a6 100644 --- a/tests/deal.II/grid_tools_04.cc +++ b/tests/deal.II/grid_tools_04.cc @@ -29,7 +29,7 @@ #include #include -std::ofstream logfile("grid_tools_04/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/grid_tools_05.cc b/tests/deal.II/grid_tools_05.cc index e099e85470..ea394d5038 100644 --- a/tests/deal.II/grid_tools_05.cc +++ b/tests/deal.II/grid_tools_05.cc @@ -29,7 +29,7 @@ #include #include -std::ofstream logfile("grid_tools_05/output"); +std::ofstream logfile("output"); using namespace dealii; diff --git a/tests/deal.II/grid_transform.cc b/tests/deal.II/grid_transform.cc index 4b04d09603..43b800ff98 100644 --- a/tests/deal.II/grid_transform.cc +++ b/tests/deal.II/grid_transform.cc @@ -101,7 +101,7 @@ int main () tria.set_boundary(1, inner_ball); GridOut grid_out; - std::ofstream eps_stream2("grid_transform/output"); + std::ofstream eps_stream2("output"); grid_out.write_eps(tria, eps_stream2, &mapping); tria.clear(); diff --git a/tests/deal.II/grid_transform_3d.cc b/tests/deal.II/grid_transform_3d.cc index e9880aa74c..2505c97962 100644 --- a/tests/deal.II/grid_transform_3d.cc +++ b/tests/deal.II/grid_transform_3d.cc @@ -91,7 +91,7 @@ int main () GridOut grid_out; - std::ofstream out("grid_transform_3d/output"); + std::ofstream out("output"); out.precision (5); out << std::fixed; grid_out.write_gnuplot(tria, out); diff --git a/tests/deal.II/have_same_coarse_mesh_01.cc b/tests/deal.II/have_same_coarse_mesh_01.cc index e5470346fa..c47527d61c 100644 --- a/tests/deal.II/have_same_coarse_mesh_01.cc +++ b/tests/deal.II/have_same_coarse_mesh_01.cc @@ -71,7 +71,7 @@ void test() int main() { - std::ofstream logfile ("have_same_coarse_mesh_01/output"); + std::ofstream logfile ("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/have_same_coarse_mesh_02.cc b/tests/deal.II/have_same_coarse_mesh_02.cc index a0d5d28773..3977f8728d 100644 --- a/tests/deal.II/have_same_coarse_mesh_02.cc +++ b/tests/deal.II/have_same_coarse_mesh_02.cc @@ -77,7 +77,7 @@ void test() int main() { - std::ofstream logfile ("have_same_coarse_mesh_02/output"); + std::ofstream logfile ("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/have_same_coarse_mesh_03.cc b/tests/deal.II/have_same_coarse_mesh_03.cc index 4eaa255a91..8088cb6619 100644 --- a/tests/deal.II/have_same_coarse_mesh_03.cc +++ b/tests/deal.II/have_same_coarse_mesh_03.cc @@ -77,7 +77,7 @@ void test() int main() { - std::ofstream logfile ("have_same_coarse_mesh_03/output"); + std::ofstream logfile ("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/have_same_coarse_mesh_04.cc b/tests/deal.II/have_same_coarse_mesh_04.cc index 0811cbb6d0..b369bde180 100644 --- a/tests/deal.II/have_same_coarse_mesh_04.cc +++ b/tests/deal.II/have_same_coarse_mesh_04.cc @@ -77,7 +77,7 @@ void test() int main() { - std::ofstream logfile ("have_same_coarse_mesh_04/output"); + std::ofstream logfile ("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/inhomogeneous_constraints.cc b/tests/deal.II/inhomogeneous_constraints.cc index 86809599b7..b767452fae 100644 --- a/tests/deal.II/inhomogeneous_constraints.cc +++ b/tests/deal.II/inhomogeneous_constraints.cc @@ -54,7 +54,7 @@ #include #include -std::ofstream logfile("inhomogeneous_constraints/output"); +std::ofstream logfile("output"); using namespace dealii; diff --git a/tests/deal.II/inhomogeneous_constraints_02.cc b/tests/deal.II/inhomogeneous_constraints_02.cc index 7ae13f2362..7c3b1977f3 100644 --- a/tests/deal.II/inhomogeneous_constraints_02.cc +++ b/tests/deal.II/inhomogeneous_constraints_02.cc @@ -52,7 +52,7 @@ #include #include -std::ofstream logfile("inhomogeneous_constraints_02/output"); +std::ofstream logfile("output"); using namespace dealii; diff --git a/tests/deal.II/inhomogeneous_constraints_03.cc b/tests/deal.II/inhomogeneous_constraints_03.cc index 5224966109..02a1478f9d 100644 --- a/tests/deal.II/inhomogeneous_constraints_03.cc +++ b/tests/deal.II/inhomogeneous_constraints_03.cc @@ -56,7 +56,7 @@ #include #include -std::ofstream logfile("inhomogeneous_constraints_03/output"); +std::ofstream logfile("output"); using namespace dealii; diff --git a/tests/deal.II/inhomogeneous_constraints_04.cc b/tests/deal.II/inhomogeneous_constraints_04.cc index 93c1ab1a41..b99668b5a7 100644 --- a/tests/deal.II/inhomogeneous_constraints_04.cc +++ b/tests/deal.II/inhomogeneous_constraints_04.cc @@ -53,7 +53,7 @@ #include #include -std::ofstream logfile("inhomogeneous_constraints_04/output"); +std::ofstream logfile("output"); using namespace dealii; diff --git a/tests/deal.II/inhomogeneous_constraints_block.cc b/tests/deal.II/inhomogeneous_constraints_block.cc index 8a51ed02bc..de0b45163c 100644 --- a/tests/deal.II/inhomogeneous_constraints_block.cc +++ b/tests/deal.II/inhomogeneous_constraints_block.cc @@ -47,7 +47,7 @@ #include #include -std::ofstream logfile("inhomogeneous_constraints_block/output"); +std::ofstream logfile("output"); using namespace dealii; diff --git a/tests/deal.II/inhomogeneous_constraints_nonsymmetric.cc b/tests/deal.II/inhomogeneous_constraints_nonsymmetric.cc index e15d28c303..e188023a33 100644 --- a/tests/deal.II/inhomogeneous_constraints_nonsymmetric.cc +++ b/tests/deal.II/inhomogeneous_constraints_nonsymmetric.cc @@ -46,7 +46,7 @@ #include #include -std::ofstream logfile("inhomogeneous_constraints_nonsymmetric/output"); +std::ofstream logfile("output"); using namespace dealii; diff --git a/tests/deal.II/inhomogeneous_constraints_vector.cc b/tests/deal.II/inhomogeneous_constraints_vector.cc index fb437615b7..2e8b799750 100644 --- a/tests/deal.II/inhomogeneous_constraints_vector.cc +++ b/tests/deal.II/inhomogeneous_constraints_vector.cc @@ -50,7 +50,7 @@ #include #include -std::ofstream logfile("inhomogeneous_constraints_vector/output"); +std::ofstream logfile("output"); using namespace dealii; diff --git a/tests/deal.II/intergrid_constraints.cc b/tests/deal.II/intergrid_constraints.cc index 1ab324eace..fe88edd1cb 100644 --- a/tests/deal.II/intergrid_constraints.cc +++ b/tests/deal.II/intergrid_constraints.cc @@ -42,7 +42,7 @@ -std::ofstream logfile("intergrid_constraints/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/intergrid_map.cc b/tests/deal.II/intergrid_map.cc index dac68c853b..8449e95331 100644 --- a/tests/deal.II/intergrid_map.cc +++ b/tests/deal.II/intergrid_map.cc @@ -118,7 +118,7 @@ void check () int main () { - std::ofstream logfile("intergrid_map/output"); + std::ofstream logfile("output"); deallog << std::setprecision(2); deallog.attach(logfile); diff --git a/tests/deal.II/interpolate_boundary_values_01.cc b/tests/deal.II/interpolate_boundary_values_01.cc index fb75b39d52..cab81fe5be 100644 --- a/tests/deal.II/interpolate_boundary_values_01.cc +++ b/tests/deal.II/interpolate_boundary_values_01.cc @@ -207,7 +207,7 @@ void FindBug::run () int main () { - std::ofstream logfile("interpolate_boundary_values_01/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/interpolate_boundary_values_02.cc b/tests/deal.II/interpolate_boundary_values_02.cc index b90b81d0be..a0582de8b6 100644 --- a/tests/deal.II/interpolate_boundary_values_02.cc +++ b/tests/deal.II/interpolate_boundary_values_02.cc @@ -77,7 +77,7 @@ void test () int main () { - std::ofstream logfile("interpolate_boundary_values_02/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/interpolate_dgq_01.cc b/tests/deal.II/interpolate_dgq_01.cc index 87e31c96a1..1120b3ff5a 100644 --- a/tests/deal.II/interpolate_dgq_01.cc +++ b/tests/deal.II/interpolate_dgq_01.cc @@ -107,7 +107,7 @@ void test () int main () { - std::ofstream logfile("interpolate_dgq_01/output"); + std::ofstream logfile("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/interpolate_dgq_02.cc b/tests/deal.II/interpolate_dgq_02.cc index 1b7b595295..fddfac671f 100644 --- a/tests/deal.II/interpolate_dgq_02.cc +++ b/tests/deal.II/interpolate_dgq_02.cc @@ -117,7 +117,7 @@ void test () int main () { - std::ofstream logfile("interpolate_dgq_02/output"); + std::ofstream logfile("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/interpolate_q_01.cc b/tests/deal.II/interpolate_q_01.cc index 608e0f8dfa..8b971d6f68 100644 --- a/tests/deal.II/interpolate_q_01.cc +++ b/tests/deal.II/interpolate_q_01.cc @@ -107,7 +107,7 @@ void test () int main () { - std::ofstream logfile("interpolate_q_01/output"); + std::ofstream logfile("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/interpolate_q_02.cc b/tests/deal.II/interpolate_q_02.cc index d42752295e..202896d71e 100644 --- a/tests/deal.II/interpolate_q_02.cc +++ b/tests/deal.II/interpolate_q_02.cc @@ -117,7 +117,7 @@ void test () int main () { - std::ofstream logfile("interpolate_q_02/output"); + std::ofstream logfile("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/interpolate_q_system_01.cc b/tests/deal.II/interpolate_q_system_01.cc index c79b6807e1..d08cad833c 100644 --- a/tests/deal.II/interpolate_q_system_01.cc +++ b/tests/deal.II/interpolate_q_system_01.cc @@ -113,7 +113,7 @@ void test () int main () { - std::ofstream logfile("interpolate_q_system_01/output"); + std::ofstream logfile("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/interpolate_q_system_02.cc b/tests/deal.II/interpolate_q_system_02.cc index 9208919f9e..62b3bb8a65 100644 --- a/tests/deal.II/interpolate_q_system_02.cc +++ b/tests/deal.II/interpolate_q_system_02.cc @@ -122,7 +122,7 @@ void test () int main () { - std::ofstream logfile("interpolate_q_system_02/output"); + std::ofstream logfile("output"); deallog << std::setprecision (3); deallog.attach(logfile); diff --git a/tests/deal.II/kelly_crash_02.cc b/tests/deal.II/kelly_crash_02.cc index 500e67e42a..10942c49d1 100644 --- a/tests/deal.II/kelly_crash_02.cc +++ b/tests/deal.II/kelly_crash_02.cc @@ -30,7 +30,7 @@ // // the problem was fixed by fixing the code -char logname[] = "kelly_crash_02/output"; +char logname[] = "output"; #include "../tests.h" diff --git a/tests/deal.II/line_coarsening_3d.cc b/tests/deal.II/line_coarsening_3d.cc index 71f2b8f9f3..e685096f0d 100644 --- a/tests/deal.II/line_coarsening_3d.cc +++ b/tests/deal.II/line_coarsening_3d.cc @@ -28,7 +28,7 @@ #include -std::ofstream logfile("line_coarsening_3d/output"); +std::ofstream logfile("output"); // create a triangulation of a cylinder, where the line along the axis is common diff --git a/tests/deal.II/matrices.cc b/tests/deal.II/matrices.cc index c87f3a0080..da7408dbc3 100644 --- a/tests/deal.II/matrices.cc +++ b/tests/deal.II/matrices.cc @@ -210,7 +210,7 @@ check () int main () { - std::ofstream logfile ("matrices/output"); + std::ofstream logfile ("output"); logfile << std::setprecision (2); logfile << std::fixed; deallog << std::setprecision (2); diff --git a/tests/deal.II/maximal_cell_diameter.cc b/tests/deal.II/maximal_cell_diameter.cc index 854c24fc96..3bf4eeca18 100644 --- a/tests/deal.II/maximal_cell_diameter.cc +++ b/tests/deal.II/maximal_cell_diameter.cc @@ -27,7 +27,7 @@ #include -std::ofstream logfile("maximal_cell_diameter/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/measure_et_al.cc b/tests/deal.II/measure_et_al.cc index 23797aaea7..9dab2c1f0b 100644 --- a/tests/deal.II/measure_et_al.cc +++ b/tests/deal.II/measure_et_al.cc @@ -104,7 +104,7 @@ void test() int main() { - std::ofstream logfile ("measure_et_al/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (PRECISION); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/measure_et_al_02.cc b/tests/deal.II/measure_et_al_02.cc index 8fce576c88..798ee275b1 100644 --- a/tests/deal.II/measure_et_al_02.cc +++ b/tests/deal.II/measure_et_al_02.cc @@ -110,7 +110,7 @@ void test() int main() { - std::ofstream logfile ("measure_et_al_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (PRECISION); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/memory_consumption_01.cc b/tests/deal.II/memory_consumption_01.cc index ee0c478fce..804e2d24e4 100644 --- a/tests/deal.II/memory_consumption_01.cc +++ b/tests/deal.II/memory_consumption_01.cc @@ -386,7 +386,7 @@ int main() { deal_II_exceptions::disable_abort_on_exception(); - std::ofstream logfile("memory_consumption_01/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/merge_triangulations_01.cc b/tests/deal.II/merge_triangulations_01.cc index 4f0cbda712..33db6c8ba6 100644 --- a/tests/deal.II/merge_triangulations_01.cc +++ b/tests/deal.II/merge_triangulations_01.cc @@ -32,7 +32,7 @@ #include #include -std::ofstream logfile("merge_triangulations_01/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/mesh_smoothing_02.cc b/tests/deal.II/mesh_smoothing_02.cc index 09e9a10286..edf8983064 100644 --- a/tests/deal.II/mesh_smoothing_02.cc +++ b/tests/deal.II/mesh_smoothing_02.cc @@ -38,7 +38,7 @@ // function -char logname[] = "mesh_smoothing_02/output"; +char logname[] = "output"; #include "../tests.h" diff --git a/tests/deal.II/mesh_smoothing_03.cc b/tests/deal.II/mesh_smoothing_03.cc index e04826dfde..bed97e22c3 100644 --- a/tests/deal.II/mesh_smoothing_03.cc +++ b/tests/deal.II/mesh_smoothing_03.cc @@ -26,7 +26,7 @@ // also investigate all its neighbors as well -char logname[] = "mesh_smoothing_03/output"; +char logname[] = "output"; #include "../tests.h" diff --git a/tests/deal.II/mg_dof_handler.cc b/tests/deal.II/mg_dof_handler.cc index c49bf62ee3..b2e904d6db 100644 --- a/tests/deal.II/mg_dof_handler.cc +++ b/tests/deal.II/mg_dof_handler.cc @@ -34,7 +34,7 @@ int main () { - std::ofstream logfile("mg_dof_handler/output"); + std::ofstream logfile("output"); deallog << std::setprecision(2); deallog.attach(logfile); diff --git a/tests/deal.II/minimal_cell_diameter.cc b/tests/deal.II/minimal_cell_diameter.cc index bebeb4bffd..ff1fda9b00 100644 --- a/tests/deal.II/minimal_cell_diameter.cc +++ b/tests/deal.II/minimal_cell_diameter.cc @@ -27,7 +27,7 @@ #include -std::ofstream logfile("minimal_cell_diameter/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/newton_01.cc b/tests/deal.II/newton_01.cc index bbe9655293..2b45f0b775 100644 --- a/tests/deal.II/newton_01.cc +++ b/tests/deal.II/newton_01.cc @@ -130,7 +130,7 @@ void test () int main() { - std::string logname = JobIdentifier::base_name(__FILE__) + std::string("/output"); + std::string logname = "output"; std::ofstream logfile(logname.c_str()); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/no_flux_01.cc b/tests/deal.II/no_flux_01.cc index 66653cfd14..9019a7fc05 100644 --- a/tests/deal.II/no_flux_01.cc +++ b/tests/deal.II/no_flux_01.cc @@ -82,7 +82,7 @@ void test_hyper_cube() int main() { - std::ofstream logfile ("no_flux_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_02.cc b/tests/deal.II/no_flux_02.cc index 2340508cba..7ca12d182d 100644 --- a/tests/deal.II/no_flux_02.cc +++ b/tests/deal.II/no_flux_02.cc @@ -86,7 +86,7 @@ void test_hyper_cube() int main() { - std::ofstream logfile ("no_flux_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_03.cc b/tests/deal.II/no_flux_03.cc index 3dde558101..b1aa01fbd4 100644 --- a/tests/deal.II/no_flux_03.cc +++ b/tests/deal.II/no_flux_03.cc @@ -81,7 +81,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("no_flux_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_04.cc b/tests/deal.II/no_flux_04.cc index dddb88c016..19a06cd992 100644 --- a/tests/deal.II/no_flux_04.cc +++ b/tests/deal.II/no_flux_04.cc @@ -140,7 +140,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("no_flux_04/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_05.cc b/tests/deal.II/no_flux_05.cc index ff37c5cd6f..6050fc89af 100644 --- a/tests/deal.II/no_flux_05.cc +++ b/tests/deal.II/no_flux_05.cc @@ -95,7 +95,7 @@ void test_hyper_cube() int main() { - std::ofstream logfile ("no_flux_05/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_06.cc b/tests/deal.II/no_flux_06.cc index 6e1fac5e04..9de742804a 100644 --- a/tests/deal.II/no_flux_06.cc +++ b/tests/deal.II/no_flux_06.cc @@ -69,7 +69,7 @@ void test_hyper_cube() int main() { - std::ofstream logfile ("no_flux_06/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_07.cc b/tests/deal.II/no_flux_07.cc index fb6aac300b..e3de961eec 100644 --- a/tests/deal.II/no_flux_07.cc +++ b/tests/deal.II/no_flux_07.cc @@ -82,7 +82,7 @@ void test_hyper_cube() int main() { - std::ofstream logfile ("no_flux_07/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_08.cc b/tests/deal.II/no_flux_08.cc index 720412ddce..da1d40c8ee 100644 --- a/tests/deal.II/no_flux_08.cc +++ b/tests/deal.II/no_flux_08.cc @@ -70,7 +70,7 @@ check () int main () { - std::ofstream logfile ("no_flux_08/output"); + std::ofstream logfile ("output"); logfile.precision (4); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_09.cc b/tests/deal.II/no_flux_09.cc index 2aa185c818..ec39b8cb71 100644 --- a/tests/deal.II/no_flux_09.cc +++ b/tests/deal.II/no_flux_09.cc @@ -71,7 +71,7 @@ check () int main () { - std::ofstream logfile ("no_flux_09/output"); + std::ofstream logfile ("output"); logfile.precision (4); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_10.cc b/tests/deal.II/no_flux_10.cc index 65800f6591..347e2f79db 100644 --- a/tests/deal.II/no_flux_10.cc +++ b/tests/deal.II/no_flux_10.cc @@ -211,7 +211,7 @@ void run() int main () { - std::ofstream logfile ("no_flux_10/output"); + std::ofstream logfile ("output"); logfile.precision (4); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_hp_01.cc b/tests/deal.II/no_flux_hp_01.cc index f87e5376d1..fbdf5f5cba 100644 --- a/tests/deal.II/no_flux_hp_01.cc +++ b/tests/deal.II/no_flux_hp_01.cc @@ -78,7 +78,7 @@ void test_hyper_cube() int main() { - std::ofstream logfile ("no_flux_hp_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_hp_02.cc b/tests/deal.II/no_flux_hp_02.cc index f2b56339a5..9a7fbfecf5 100644 --- a/tests/deal.II/no_flux_hp_02.cc +++ b/tests/deal.II/no_flux_hp_02.cc @@ -82,7 +82,7 @@ void test_hyper_cube() int main() { - std::ofstream logfile ("no_flux_hp_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_hp_03.cc b/tests/deal.II/no_flux_hp_03.cc index ffd1f5c1a6..f304cf9387 100644 --- a/tests/deal.II/no_flux_hp_03.cc +++ b/tests/deal.II/no_flux_hp_03.cc @@ -75,7 +75,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("no_flux_hp_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_hp_04.cc b/tests/deal.II/no_flux_hp_04.cc index 65ee5a93f2..9fdda0c549 100644 --- a/tests/deal.II/no_flux_hp_04.cc +++ b/tests/deal.II/no_flux_hp_04.cc @@ -133,7 +133,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("no_flux_hp_04/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/no_flux_hp_05.cc b/tests/deal.II/no_flux_hp_05.cc index 05450a31ed..a4e7e9e4a8 100644 --- a/tests/deal.II/no_flux_hp_05.cc +++ b/tests/deal.II/no_flux_hp_05.cc @@ -86,7 +86,7 @@ void test_hyper_cube() int main() { - std::ofstream logfile ("no_flux_hp_05/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/normal_vector_01.cc b/tests/deal.II/normal_vector_01.cc index ad5446a3a8..ad7783bbf3 100644 --- a/tests/deal.II/normal_vector_01.cc +++ b/tests/deal.II/normal_vector_01.cc @@ -61,7 +61,7 @@ void create_triangulation(const unsigned int case_no, int main () { - std::ofstream logfile ("normal_vector_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/normal_vector_01_2d.cc b/tests/deal.II/normal_vector_01_2d.cc index 19f04f394c..65123e6e75 100644 --- a/tests/deal.II/normal_vector_01_2d.cc +++ b/tests/deal.II/normal_vector_01_2d.cc @@ -61,7 +61,7 @@ void create_triangulation(const unsigned int case_no, int main () { - std::ofstream logfile ("normal_vector_01_2d/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/normal_vector_02.cc b/tests/deal.II/normal_vector_02.cc index 4e29cb56fd..7d4c921860 100644 --- a/tests/deal.II/normal_vector_02.cc +++ b/tests/deal.II/normal_vector_02.cc @@ -34,7 +34,7 @@ int main () { - std::ofstream logfile ("normal_vector_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/normal_vector_02_2d.cc b/tests/deal.II/normal_vector_02_2d.cc index bdc2889962..8e41a1ed42 100644 --- a/tests/deal.II/normal_vector_02_2d.cc +++ b/tests/deal.II/normal_vector_02_2d.cc @@ -34,7 +34,7 @@ int main () { - std::ofstream logfile ("normal_vector_02_2d/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/normal_vector_03.cc b/tests/deal.II/normal_vector_03.cc index c1a47bd26d..7d8c6fb9dc 100644 --- a/tests/deal.II/normal_vector_03.cc +++ b/tests/deal.II/normal_vector_03.cc @@ -62,7 +62,7 @@ void create_triangulation(const unsigned int case_no, int main () { - std::ofstream logfile ("normal_vector_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/normal_vector_03_2d.cc b/tests/deal.II/normal_vector_03_2d.cc index 6ef13d3c01..f0ac17e2b2 100644 --- a/tests/deal.II/normal_vector_03_2d.cc +++ b/tests/deal.II/normal_vector_03_2d.cc @@ -62,7 +62,7 @@ void create_triangulation(const unsigned int case_no, int main () { - std::ofstream logfile ("normal_vector_03_2d/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/normals_at_vertices_01.cc b/tests/deal.II/normals_at_vertices_01.cc index 6f72dbe80b..f10d2f493b 100644 --- a/tests/deal.II/normals_at_vertices_01.cc +++ b/tests/deal.II/normals_at_vertices_01.cc @@ -60,7 +60,7 @@ void create_triangulation(const unsigned int case_no, int main () { - std::ofstream logfile ("normals_at_vertices_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/normals_at_vertices_02.cc b/tests/deal.II/normals_at_vertices_02.cc index 5d20005b0d..0451f25eaa 100644 --- a/tests/deal.II/normals_at_vertices_02.cc +++ b/tests/deal.II/normals_at_vertices_02.cc @@ -34,7 +34,7 @@ int main () { - std::ofstream logfile ("normals_at_vertices_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/number_cache_01.cc b/tests/deal.II/number_cache_01.cc index a04e88f1dd..e4269d08a2 100644 --- a/tests/deal.II/number_cache_01.cc +++ b/tests/deal.II/number_cache_01.cc @@ -35,7 +35,7 @@ #include #include -std::ofstream logfile("number_cache_01/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/number_cache_02.cc b/tests/deal.II/number_cache_02.cc index 44e7c4ce7f..531af05649 100644 --- a/tests/deal.II/number_cache_02.cc +++ b/tests/deal.II/number_cache_02.cc @@ -35,7 +35,7 @@ #include #include -std::ofstream logfile("number_cache_02/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/number_cache_03.cc b/tests/deal.II/number_cache_03.cc index 164a6117ca..d19d93c063 100644 --- a/tests/deal.II/number_cache_03.cc +++ b/tests/deal.II/number_cache_03.cc @@ -40,7 +40,7 @@ #include #include -std::ofstream logfile("number_cache_03/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/point_value_history_01.cc b/tests/deal.II/point_value_history_01.cc index 1f37fee27f..2598b2296b 100644 --- a/tests/deal.II/point_value_history_01.cc +++ b/tests/deal.II/point_value_history_01.cc @@ -163,7 +163,7 @@ void TestPointValueHistory::run() test_copy.evaluate_field("Solution", solution); std::vector input_value(n_inputs, 1); test_copy.push_back_independent(input_value); - test_copy.write_gnuplot("point_value_history_01/Test_Copy"); + test_copy.write_gnuplot("Test_Copy"); test_copy.status(deallog.get_file_stream()); test_copy.clear (); // end of assignment operator check @@ -215,8 +215,8 @@ void TestPointValueHistory::run() post_processed = solution; post_processed.add(2.0); // simple post processing, giving it a dc offset } - node_monitor.write_gnuplot("point_value_history_01/node"); - no_dof_handler.write_gnuplot("point_value_history_01/no_dof"); + node_monitor.write_gnuplot("node"); + no_dof_handler.write_gnuplot("no_dof"); node_monitor.status (deallog.get_file_stream()); no_dof_handler.status (deallog.get_file_stream()); @@ -226,16 +226,16 @@ void TestPointValueHistory::run() // copy all the data into deallog and // delete those files const std::string filenames[] - = { "point_value_history_01/node_00.gpl", - "point_value_history_01/node_01.gpl", - "point_value_history_01/node_02.gpl", - "point_value_history_01/node_03.gpl", - "point_value_history_01/node_04.gpl", - "point_value_history_01/node_05.gpl", - "point_value_history_01/node_indep.gpl", - "point_value_history_01/Test_Copy_00.gpl", - "point_value_history_01/Test_Copy_indep.gpl", - "point_value_history_01/no_dof_indep.gpl" + = { "node_00.gpl", + "node_01.gpl", + "node_02.gpl", + "node_03.gpl", + "node_04.gpl", + "node_05.gpl", + "node_indep.gpl", + "Test_Copy_00.gpl", + "Test_Copy_indep.gpl", + "no_dof_indep.gpl" }; for (unsigned int i=0; i::run() int main() { - std::ofstream logfile("point_value_history_01/output"); + std::ofstream logfile("output"); logfile << std::setprecision(2); deallog << std::setprecision(2); deallog.attach(logfile); diff --git a/tests/deal.II/point_value_history_02.cc b/tests/deal.II/point_value_history_02.cc index 4911c67084..1050f263c5 100644 --- a/tests/deal.II/point_value_history_02.cc +++ b/tests/deal.II/point_value_history_02.cc @@ -268,7 +268,7 @@ void TestPointValueHistory::run() test_copy.evaluate_field("Solution", solution); std::vector input_value(n_inputs, 1); test_copy.push_back_independent(input_value); - test_copy.write_gnuplot("point_value_history_02/Test_Copy"); + test_copy.write_gnuplot("Test_Copy"); test_copy.status(deallog.get_file_stream()); test_copy.clear (); // end of assignment operator check @@ -354,8 +354,8 @@ void TestPointValueHistory::run() post_processed.add(2.0); // simple post processing, giving it a dc offset } triangulation.refine_global(1); // should mark the triangulation as changed - node_monitor.write_gnuplot("point_value_history_02/node", postprocessor_locations); - no_dof_handler.write_gnuplot("point_value_history_02/no_dof"); + node_monitor.write_gnuplot("node", postprocessor_locations); + no_dof_handler.write_gnuplot("no_dof"); node_monitor.status (deallog.get_file_stream()); no_dof_handler.status (deallog.get_file_stream()); @@ -365,16 +365,16 @@ void TestPointValueHistory::run() // copy all the data into deallog and // delete those files const std::string filenames[] - = { "point_value_history_02/node_00.gpl", - "point_value_history_02/node_01.gpl", - "point_value_history_02/node_02.gpl", - "point_value_history_02/node_03.gpl", - "point_value_history_02/node_04.gpl", - "point_value_history_02/node_05.gpl", - "point_value_history_02/node_indep.gpl", - "point_value_history_02/Test_Copy_00.gpl", - "point_value_history_02/Test_Copy_indep.gpl", - "point_value_history_02/no_dof_indep.gpl" + = { "node_00.gpl", + "node_01.gpl", + "node_02.gpl", + "node_03.gpl", + "node_04.gpl", + "node_05.gpl", + "node_indep.gpl", + "Test_Copy_00.gpl", + "Test_Copy_indep.gpl", + "no_dof_indep.gpl" }; for (unsigned int i=0; i::output_results (unsigned int step, Vector ::output_results (unsigned int step, Vector ::run() test_copy.evaluate_field("Solution", solution); std::vector input_value(n_inputs, 1); test_copy.push_back_independent(input_value); - test_copy.write_gnuplot("point_value_history_03/Test_Copy"); + test_copy.write_gnuplot("Test_Copy"); test_copy.status(deallog.get_file_stream()); test_copy.clear (); // end of assignment operator check @@ -318,8 +318,8 @@ void TestPointValueHistory::run() post_processed = solution; post_processed.add(2.0); // simple post processing, giving it a dc offset } - node_monitor.write_gnuplot("point_value_history_03/node", postprocessor_locations); - no_dof_handler.write_gnuplot("point_value_history_03/no_dof"); // no point in adding postprocessor_locations + node_monitor.write_gnuplot("node", postprocessor_locations); + no_dof_handler.write_gnuplot("no_dof"); // no point in adding postprocessor_locations node_monitor.status (deallog.get_file_stream()); no_dof_handler.status (deallog.get_file_stream()); @@ -329,16 +329,16 @@ void TestPointValueHistory::run() // copy all the data into deallog and // delete those files const std::string filenames[] - = { "point_value_history_03/node_00.gpl", - "point_value_history_03/node_01.gpl", - "point_value_history_03/node_02.gpl", - "point_value_history_03/node_03.gpl", - "point_value_history_03/node_04.gpl", - "point_value_history_03/node_05.gpl", - "point_value_history_03/node_indep.gpl", - "point_value_history_03/Test_Copy_00.gpl", - "point_value_history_03/Test_Copy_indep.gpl", - "point_value_history_03/no_dof_indep.gpl" + = { "node_00.gpl", + "node_01.gpl", + "node_02.gpl", + "node_03.gpl", + "node_04.gpl", + "node_05.gpl", + "node_indep.gpl", + "Test_Copy_00.gpl", + "Test_Copy_indep.gpl", + "no_dof_indep.gpl" }; for (unsigned int i=0; i::output_results (unsigned int step, Vector ::output_results (unsigned int step, Vector &fe) int main() { - std::ofstream logfile ("project_boundary_rt_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/project_bv_curl_conf.cc b/tests/deal.II/project_bv_curl_conf.cc index 7d221c5d78..ffe64249e0 100644 --- a/tests/deal.II/project_bv_curl_conf.cc +++ b/tests/deal.II/project_bv_curl_conf.cc @@ -24,7 +24,7 @@ #include #include -std::ofstream logfile ("project_bv_curl_conf/output"); +std::ofstream logfile ("output"); template class BoundaryFunction: public Function diff --git a/tests/deal.II/project_bv_div_conf.cc b/tests/deal.II/project_bv_div_conf.cc index 8e7eca3b44..3637bc834e 100644 --- a/tests/deal.II/project_bv_div_conf.cc +++ b/tests/deal.II/project_bv_div_conf.cc @@ -24,7 +24,7 @@ #include #include -std::ofstream logfile ("project_bv_div_conf/output"); +std::ofstream logfile ("output"); template class BoundaryFunction: public Function diff --git a/tests/deal.II/project_dgp_01.cc b/tests/deal.II/project_dgp_01.cc index 796c956314..383d904de3 100644 --- a/tests/deal.II/project_dgp_01.cc +++ b/tests/deal.II/project_dgp_01.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for DGP elements correctly -char logname[] = "project_dgp_01/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgp_02.cc b/tests/deal.II/project_dgp_02.cc index 41371318fe..448abdbba9 100644 --- a/tests/deal.II/project_dgp_02.cc +++ b/tests/deal.II/project_dgp_02.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for DGP elements correctly -char logname[] = "project_dgp_02/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgp_03.cc b/tests/deal.II/project_dgp_03.cc index 7faf76b61d..fefa172ca7 100644 --- a/tests/deal.II/project_dgp_03.cc +++ b/tests/deal.II/project_dgp_03.cc @@ -23,7 +23,7 @@ // convergence, which we have to specify in the last argument to the // call below -char logname[] = "project_dgp_03/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgp_04.cc b/tests/deal.II/project_dgp_04.cc index b76cd547bc..649412162f 100644 --- a/tests/deal.II/project_dgp_04.cc +++ b/tests/deal.II/project_dgp_04.cc @@ -23,7 +23,7 @@ // convergence, which we have to specify in the last argument to the // call below -char logname[] = "project_dgp_04/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgp_05.cc b/tests/deal.II/project_dgp_05.cc index 44d7a19de7..2057f92b52 100644 --- a/tests/deal.II/project_dgp_05.cc +++ b/tests/deal.II/project_dgp_05.cc @@ -23,7 +23,7 @@ // convergence, which we have to specify in the last argument to the // call below -char logname[] = "project_dgp_05/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgp_monomial_01.cc b/tests/deal.II/project_dgp_monomial_01.cc index 69f2ad5a4c..5b08916e97 100644 --- a/tests/deal.II/project_dgp_monomial_01.cc +++ b/tests/deal.II/project_dgp_monomial_01.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for DGP_Monomial elements correctly -char logname[] = "project_dgp_monomial_01/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgp_monomial_02.cc b/tests/deal.II/project_dgp_monomial_02.cc index 833dc35466..ca16dfc555 100644 --- a/tests/deal.II/project_dgp_monomial_02.cc +++ b/tests/deal.II/project_dgp_monomial_02.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for DGP_Monomial elements correctly -char logname[] = "project_dgp_monomial_02/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgp_monomial_03.cc b/tests/deal.II/project_dgp_monomial_03.cc index 5c79c9a6b9..7b0919170d 100644 --- a/tests/deal.II/project_dgp_monomial_03.cc +++ b/tests/deal.II/project_dgp_monomial_03.cc @@ -23,7 +23,7 @@ // convergence, which we have to specify in the last argument to the // call below -char logname[] = "project_dgp_monomial_03/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgp_monomial_04.cc b/tests/deal.II/project_dgp_monomial_04.cc index fd27ca9cc2..8e025ccecc 100644 --- a/tests/deal.II/project_dgp_monomial_04.cc +++ b/tests/deal.II/project_dgp_monomial_04.cc @@ -23,7 +23,7 @@ // convergence, which we have to specify in the last argument to the // call below -char logname[] = "project_dgp_monomial_04/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgp_monomial_05.cc b/tests/deal.II/project_dgp_monomial_05.cc index 17e5a05bf7..3d6132e9ac 100644 --- a/tests/deal.II/project_dgp_monomial_05.cc +++ b/tests/deal.II/project_dgp_monomial_05.cc @@ -23,7 +23,7 @@ // convergence, which we have to specify in the last argument to the // call below -char logname[] = "project_dgp_monomial_05/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgq_01.cc b/tests/deal.II/project_dgq_01.cc index e399bfd88d..d200cb62b7 100644 --- a/tests/deal.II/project_dgq_01.cc +++ b/tests/deal.II/project_dgq_01.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for DGQ elements correctly -char logname[] = "project_dgq_01/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgq_02.cc b/tests/deal.II/project_dgq_02.cc index 2bd19fc7ca..08a0b4b457 100644 --- a/tests/deal.II/project_dgq_02.cc +++ b/tests/deal.II/project_dgq_02.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for DGQ elements correctly -char logname[] = "project_dgq_02/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgq_03.cc b/tests/deal.II/project_dgq_03.cc index e0d2611a0a..c6557c7360 100644 --- a/tests/deal.II/project_dgq_03.cc +++ b/tests/deal.II/project_dgq_03.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for DGQ elements correctly -char logname[] = "project_dgq_03/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgq_04.cc b/tests/deal.II/project_dgq_04.cc index f5ef42cfbf..2679a9da18 100644 --- a/tests/deal.II/project_dgq_04.cc +++ b/tests/deal.II/project_dgq_04.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for DGQ elements correctly -char logname[] = "project_dgq_04/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_dgq_05.cc b/tests/deal.II/project_dgq_05.cc index 87fdf63d9e..17a1e218e7 100644 --- a/tests/deal.II/project_dgq_05.cc +++ b/tests/deal.II/project_dgq_05.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for DGQ elements correctly -char logname[] = "project_dgq_05/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_nedelec_01.cc b/tests/deal.II/project_nedelec_01.cc index dc24424004..6781bc7d13 100644 --- a/tests/deal.II/project_nedelec_01.cc +++ b/tests/deal.II/project_nedelec_01.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for Nedelec elements correctly -char logname[] = "project_nedelec_01/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_nedelec_02.cc b/tests/deal.II/project_nedelec_02.cc index 71153941df..a080557af3 100644 --- a/tests/deal.II/project_nedelec_02.cc +++ b/tests/deal.II/project_nedelec_02.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for Nedelec elements correctly -char logname[] = "project_nedelec_02/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_nedelec_03.cc b/tests/deal.II/project_nedelec_03.cc index 054ef11f27..31b9763fe0 100644 --- a/tests/deal.II/project_nedelec_03.cc +++ b/tests/deal.II/project_nedelec_03.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for Nedelec elements correctly -char logname[] = "project_nedelec_03/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_nedelec_04.cc b/tests/deal.II/project_nedelec_04.cc index c5b215e098..c21743321c 100644 --- a/tests/deal.II/project_nedelec_04.cc +++ b/tests/deal.II/project_nedelec_04.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for Nedelec elements correctly -char logname[] = "project_nedelec_04/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_nedelec_05.cc b/tests/deal.II/project_nedelec_05.cc index f9ae168a2e..96a7c3635e 100644 --- a/tests/deal.II/project_nedelec_05.cc +++ b/tests/deal.II/project_nedelec_05.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for Nedelec elements correctly -char logname[] = "project_nedelec_05/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_01.cc b/tests/deal.II/project_q_01.cc index 7bc3c6fdef..479d72e735 100644 --- a/tests/deal.II/project_q_01.cc +++ b/tests/deal.II/project_q_01.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for Q elements correctly -char logname[] = "project_q_01/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_02.cc b/tests/deal.II/project_q_02.cc index 2f55eeb7fc..be6da44338 100644 --- a/tests/deal.II/project_q_02.cc +++ b/tests/deal.II/project_q_02.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for Q elements correctly -char logname[] = "project_q_02/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_03.cc b/tests/deal.II/project_q_03.cc index 7bd45b4bd6..923e8eea43 100644 --- a/tests/deal.II/project_q_03.cc +++ b/tests/deal.II/project_q_03.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for Q elements correctly -char logname[] = "project_q_03/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_04.cc b/tests/deal.II/project_q_04.cc index d150f09359..85f4d6ef28 100644 --- a/tests/deal.II/project_q_04.cc +++ b/tests/deal.II/project_q_04.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for Q elements correctly -char logname[] = "project_q_04/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_05.cc b/tests/deal.II/project_q_05.cc index 136edfc203..c3c4c8e55c 100644 --- a/tests/deal.II/project_q_05.cc +++ b/tests/deal.II/project_q_05.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for Q elements correctly -char logname[] = "project_q_05/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_hierarchical_01.cc b/tests/deal.II/project_q_hierarchical_01.cc index aa7946de6c..9f71eac887 100644 --- a/tests/deal.II/project_q_hierarchical_01.cc +++ b/tests/deal.II/project_q_hierarchical_01.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for QHierarchical elements correctly -char logname[] = "project_q_hierarchical_01/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_hierarchical_02.cc b/tests/deal.II/project_q_hierarchical_02.cc index ac8a7b5baf..9dc798eb7a 100644 --- a/tests/deal.II/project_q_hierarchical_02.cc +++ b/tests/deal.II/project_q_hierarchical_02.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for QHierarchical elements correctly -char logname[] = "project_q_hierarchical_02/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_hierarchical_03.cc b/tests/deal.II/project_q_hierarchical_03.cc index a32426f3dd..1fdc46d6e5 100644 --- a/tests/deal.II/project_q_hierarchical_03.cc +++ b/tests/deal.II/project_q_hierarchical_03.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for QHierarchical elements correctly -char logname[] = "project_q_hierarchical_03/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_hierarchical_04.cc b/tests/deal.II/project_q_hierarchical_04.cc index 8f751464a2..ebe6bbfea3 100644 --- a/tests/deal.II/project_q_hierarchical_04.cc +++ b/tests/deal.II/project_q_hierarchical_04.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for QHierarchical elements correctly -char logname[] = "project_q_hierarchical_04/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_hierarchical_05.cc b/tests/deal.II/project_q_hierarchical_05.cc index 983a3fa339..cfb810e92e 100644 --- a/tests/deal.II/project_q_hierarchical_05.cc +++ b/tests/deal.II/project_q_hierarchical_05.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for QHierarchical elements correctly -char logname[] = "project_q_hierarchical_05/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_system_01.cc b/tests/deal.II/project_q_system_01.cc index 7fc70b40df..9792f1a61c 100644 --- a/tests/deal.II/project_q_system_01.cc +++ b/tests/deal.II/project_q_system_01.cc @@ -19,7 +19,7 @@ // check that VectorTools::project works for FESystem(FE_Q) elements correctly // on a uniformly refined mesh for functions of degree q -char logname[] = "project_q_system_01/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_system_02.cc b/tests/deal.II/project_q_system_02.cc index 3eb1e68c26..33a6d5e0ae 100644 --- a/tests/deal.II/project_q_system_02.cc +++ b/tests/deal.II/project_q_system_02.cc @@ -19,7 +19,7 @@ // check that VectorTools::project works for FESystem(FE_Q) elements correctly // on a uniformly refined mesh for functions of degree q -char logname[] = "project_q_system_02/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_system_03.cc b/tests/deal.II/project_q_system_03.cc index 17f3c1cd4e..d309185104 100644 --- a/tests/deal.II/project_q_system_03.cc +++ b/tests/deal.II/project_q_system_03.cc @@ -19,7 +19,7 @@ // check that VectorTools::project works for FESystem(FE_Q) elements correctly // on a uniformly refined mesh for functions of degree q -char logname[] = "project_q_system_03/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_system_04.cc b/tests/deal.II/project_q_system_04.cc index 9590c31cfa..ff6430754c 100644 --- a/tests/deal.II/project_q_system_04.cc +++ b/tests/deal.II/project_q_system_04.cc @@ -19,7 +19,7 @@ // check that VectorTools::project works for FESystem(FE_Q) elements correctly // on a uniformly refined mesh for functions of degree q -char logname[] = "project_q_system_04/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_q_system_05.cc b/tests/deal.II/project_q_system_05.cc index b1186ad5b8..b1ad85a4cf 100644 --- a/tests/deal.II/project_q_system_05.cc +++ b/tests/deal.II/project_q_system_05.cc @@ -19,7 +19,7 @@ // check that VectorTools::project works for FESystem(FE_Q) elements correctly // on a uniformly refined mesh for functions of degree q -char logname[] = "project_q_system_05/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_rt_01.cc b/tests/deal.II/project_rt_01.cc index 7b6606e439..ce4b51d6d0 100644 --- a/tests/deal.II/project_rt_01.cc +++ b/tests/deal.II/project_rt_01.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for RT elements correctly -char logname[] = "project_rt_01/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_rt_02.cc b/tests/deal.II/project_rt_02.cc index 62b24299da..24a4690fca 100644 --- a/tests/deal.II/project_rt_02.cc +++ b/tests/deal.II/project_rt_02.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for RT elements correctly -char logname[] = "project_rt_02/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_rt_04.cc b/tests/deal.II/project_rt_04.cc index e0ce9a4bb8..528512b76d 100644 --- a/tests/deal.II/project_rt_04.cc +++ b/tests/deal.II/project_rt_04.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for RT elements correctly -char logname[] = "project_rt_04/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_rt_05.cc b/tests/deal.II/project_rt_05.cc index a740156ccb..0e08cdf111 100644 --- a/tests/deal.II/project_rt_05.cc +++ b/tests/deal.II/project_rt_05.cc @@ -18,7 +18,7 @@ // check that VectorTools::project works for RT elements correctly -char logname[] = "project_rt_05/output"; +char logname[] = "output"; #include "project_common.h" diff --git a/tests/deal.II/project_to_surface_01.cc b/tests/deal.II/project_to_surface_01.cc index 4855daaf54..7fda38c7ae 100644 --- a/tests/deal.II/project_to_surface_01.cc +++ b/tests/deal.II/project_to_surface_01.cc @@ -128,7 +128,7 @@ void test () int main () { - std::ofstream logfile ("project_to_surface_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/project_to_surface_02.cc b/tests/deal.II/project_to_surface_02.cc index ef05055d9c..9e42fc3a6c 100644 --- a/tests/deal.II/project_to_surface_02.cc +++ b/tests/deal.II/project_to_surface_02.cc @@ -136,7 +136,7 @@ void test () int main () { - std::ofstream logfile ("project_to_surface_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/project_to_surface_03.cc b/tests/deal.II/project_to_surface_03.cc index 72ab9f749c..f99a6de525 100644 --- a/tests/deal.II/project_to_surface_03.cc +++ b/tests/deal.II/project_to_surface_03.cc @@ -107,7 +107,7 @@ void test () int main () { - std::ofstream logfile ("project_to_surface_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (3); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/recursively_set_material_id.cc b/tests/deal.II/recursively_set_material_id.cc index 6478a4cb1e..439436c9c7 100644 --- a/tests/deal.II/recursively_set_material_id.cc +++ b/tests/deal.II/recursively_set_material_id.cc @@ -88,7 +88,7 @@ void test() int main() { - std::ofstream logfile ("recursively_set_material_id/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/refinement_listener_01.cc b/tests/deal.II/refinement_listener_01.cc index 891b722dfe..611a128216 100644 --- a/tests/deal.II/refinement_listener_01.cc +++ b/tests/deal.II/refinement_listener_01.cc @@ -28,7 +28,7 @@ #include #include -std::ofstream logfile("refinement_listener_01/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/refinement_listener_02.cc b/tests/deal.II/refinement_listener_02.cc index cd56e10e2b..6279b4a0b8 100644 --- a/tests/deal.II/refinement_listener_02.cc +++ b/tests/deal.II/refinement_listener_02.cc @@ -29,7 +29,7 @@ #include #include -std::ofstream logfile("refinement_listener_02/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/refinement_listener_03.cc b/tests/deal.II/refinement_listener_03.cc index 34f9b13c8f..084648a064 100644 --- a/tests/deal.II/refinement_listener_03.cc +++ b/tests/deal.II/refinement_listener_03.cc @@ -28,7 +28,7 @@ #include #include -std::ofstream logfile("refinement_listener_03/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/rt_covariant.cc b/tests/deal.II/rt_covariant.cc index e884cf1ca8..a352c9eb65 100644 --- a/tests/deal.II/rt_covariant.cc +++ b/tests/deal.II/rt_covariant.cc @@ -72,7 +72,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("rt_covariant/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/rt_hessian.cc b/tests/deal.II/rt_hessian.cc index 1e15ed34cf..ab1c473622 100644 --- a/tests/deal.II/rt_hessian.cc +++ b/tests/deal.II/rt_hessian.cc @@ -80,7 +80,7 @@ void test_hyper_sphere() int main() { - std::ofstream logfile ("rt_hessian/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog.attach(logfile); diff --git a/tests/deal.II/sparsity_pattern.cc b/tests/deal.II/sparsity_pattern.cc index c7c64ad342..1d235b92c0 100644 --- a/tests/deal.II/sparsity_pattern.cc +++ b/tests/deal.II/sparsity_pattern.cc @@ -208,7 +208,7 @@ check () int main () { - std::ofstream logfile ("sparsity_pattern/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/sparsity_pattern_01.cc b/tests/deal.II/sparsity_pattern_01.cc index e4f9f9a6af..364175cca0 100644 --- a/tests/deal.II/sparsity_pattern_01.cc +++ b/tests/deal.II/sparsity_pattern_01.cc @@ -207,7 +207,7 @@ check () int main () { - std::ofstream logfile ("sparsity_pattern_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/sparsity_pattern_01_x.cc b/tests/deal.II/sparsity_pattern_01_x.cc index 0a4f66ae0a..e077354bb8 100644 --- a/tests/deal.II/sparsity_pattern_01_x.cc +++ b/tests/deal.II/sparsity_pattern_01_x.cc @@ -208,7 +208,7 @@ check () int main () { - std::ofstream logfile ("sparsity_pattern_01_x/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/sparsity_pattern_02.cc b/tests/deal.II/sparsity_pattern_02.cc index afcec5d821..17568319cd 100644 --- a/tests/deal.II/sparsity_pattern_02.cc +++ b/tests/deal.II/sparsity_pattern_02.cc @@ -96,7 +96,7 @@ check () int main () { - std::ofstream logfile ("sparsity_pattern_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/sparsity_pattern_03.cc b/tests/deal.II/sparsity_pattern_03.cc index 0b8b2cec0b..1cd8e8d76d 100644 --- a/tests/deal.II/sparsity_pattern_03.cc +++ b/tests/deal.II/sparsity_pattern_03.cc @@ -99,7 +99,7 @@ check () int main () { - std::ofstream logfile ("sparsity_pattern_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/sparsity_pattern_04.cc b/tests/deal.II/sparsity_pattern_04.cc index a5e45f265a..90a988d819 100644 --- a/tests/deal.II/sparsity_pattern_04.cc +++ b/tests/deal.II/sparsity_pattern_04.cc @@ -101,7 +101,7 @@ check () int main () { - std::ofstream logfile ("sparsity_pattern_04/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/sparsity_pattern_05.cc b/tests/deal.II/sparsity_pattern_05.cc index af6b6cf0af..ac31de338b 100644 --- a/tests/deal.II/sparsity_pattern_05.cc +++ b/tests/deal.II/sparsity_pattern_05.cc @@ -159,7 +159,7 @@ check () int main () { - std::ofstream logfile ("sparsity_pattern_05/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/sparsity_pattern_05_x.cc b/tests/deal.II/sparsity_pattern_05_x.cc index eec60a8a6a..1a5d024228 100644 --- a/tests/deal.II/sparsity_pattern_05_x.cc +++ b/tests/deal.II/sparsity_pattern_05_x.cc @@ -159,7 +159,7 @@ check () int main () { - std::ofstream logfile ("sparsity_pattern_05_x/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/sparsity_pattern_x.cc b/tests/deal.II/sparsity_pattern_x.cc index c0cbd64fbe..371379b51e 100644 --- a/tests/deal.II/sparsity_pattern_x.cc +++ b/tests/deal.II/sparsity_pattern_x.cc @@ -208,7 +208,7 @@ check () int main () { - std::ofstream logfile ("sparsity_pattern_x/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (2); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/subcelldata.cc b/tests/deal.II/subcelldata.cc index 07ba176f28..fe620e6fc1 100644 --- a/tests/deal.II/subcelldata.cc +++ b/tests/deal.II/subcelldata.cc @@ -111,7 +111,7 @@ void test() int main () { - std::ofstream logfile("subcelldata/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/subdomain_ids.cc b/tests/deal.II/subdomain_ids.cc index ffab29f8a4..81f9f2dcad 100644 --- a/tests/deal.II/subdomain_ids.cc +++ b/tests/deal.II/subdomain_ids.cc @@ -34,7 +34,7 @@ #include -std::ofstream logfile("subdomain_ids/output"); +std::ofstream logfile("output"); DeclException2 (ExcNumberMismatch, diff --git a/tests/deal.II/subdomain_on_refinement.cc b/tests/deal.II/subdomain_on_refinement.cc index 9b680100e0..fc16562a8a 100644 --- a/tests/deal.II/subdomain_on_refinement.cc +++ b/tests/deal.II/subdomain_on_refinement.cc @@ -34,7 +34,7 @@ #include -std::ofstream logfile("subdomain_on_refinement/output"); +std::ofstream logfile("output"); DeclException2 (ExcNumberMismatch, diff --git a/tests/deal.II/time_dependent_01.cc b/tests/deal.II/time_dependent_01.cc index e2feb65594..8be039be9d 100644 --- a/tests/deal.II/time_dependent_01.cc +++ b/tests/deal.II/time_dependent_01.cc @@ -27,7 +27,7 @@ #include -std::ofstream logfile("time_dependent_01/output"); +std::ofstream logfile("output"); std::vector end_sweep_flags; diff --git a/tests/deal.II/tria_iterator_with_one_header.cc b/tests/deal.II/tria_iterator_with_one_header.cc index 73a53d3012..af8a547bcd 100644 --- a/tests/deal.II/tria_iterator_with_one_header.cc +++ b/tests/deal.II/tria_iterator_with_one_header.cc @@ -30,7 +30,7 @@ #include #include -std::ofstream logfile("tria_iterator_with_one_header/output"); +std::ofstream logfile("output"); template diff --git a/tests/deal.II/tria_last.cc b/tests/deal.II/tria_last.cc index 053ca4d5bb..01bb2cdf0b 100644 --- a/tests/deal.II/tria_last.cc +++ b/tests/deal.II/tria_last.cc @@ -35,7 +35,7 @@ #include #include -std::ofstream logfile("tria_last/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/union_triangulation.cc b/tests/deal.II/union_triangulation.cc index ad0a7b1e0e..96f1c6c228 100644 --- a/tests/deal.II/union_triangulation.cc +++ b/tests/deal.II/union_triangulation.cc @@ -32,7 +32,7 @@ #include #include -std::ofstream logfile("union_triangulation/output"); +std::ofstream logfile("output"); diff --git a/tests/deal.II/user_data_01.cc b/tests/deal.II/user_data_01.cc index 614d841a30..8835989c4f 100644 --- a/tests/deal.II/user_data_01.cc +++ b/tests/deal.II/user_data_01.cc @@ -289,7 +289,7 @@ int main() { deal_II_exceptions::disable_abort_on_exception(); - std::ofstream logfile("user_data_01/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/vectors_boundary_rhs_01.cc b/tests/deal.II/vectors_boundary_rhs_01.cc index d97ab2b99d..4c347266d2 100644 --- a/tests/deal.II/vectors_boundary_rhs_01.cc +++ b/tests/deal.II/vectors_boundary_rhs_01.cc @@ -106,7 +106,7 @@ check () int main () { - std::ofstream logfile ("vectors_boundary_rhs_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (4); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/vectors_boundary_rhs_02.cc b/tests/deal.II/vectors_boundary_rhs_02.cc index 371b15b4c3..e56ea8afb8 100644 --- a/tests/deal.II/vectors_boundary_rhs_02.cc +++ b/tests/deal.II/vectors_boundary_rhs_02.cc @@ -108,7 +108,7 @@ check () int main () { - std::ofstream logfile ("vectors_boundary_rhs_02/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (4); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/vectors_boundary_rhs_03.cc b/tests/deal.II/vectors_boundary_rhs_03.cc index d48b2f1a48..bac2a10a03 100644 --- a/tests/deal.II/vectors_boundary_rhs_03.cc +++ b/tests/deal.II/vectors_boundary_rhs_03.cc @@ -106,7 +106,7 @@ check () int main () { - std::ofstream logfile ("vectors_boundary_rhs_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (4); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/vectors_point_source_01.cc b/tests/deal.II/vectors_point_source_01.cc index 4d49baf090..47fd1ca553 100644 --- a/tests/deal.II/vectors_point_source_01.cc +++ b/tests/deal.II/vectors_point_source_01.cc @@ -105,7 +105,7 @@ check () int main () { - std::ofstream logfile ("vectors_point_source_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (4); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/vectors_rhs_01.cc b/tests/deal.II/vectors_rhs_01.cc index 546f3f6d6d..983891a87d 100644 --- a/tests/deal.II/vectors_rhs_01.cc +++ b/tests/deal.II/vectors_rhs_01.cc @@ -108,7 +108,7 @@ check () int main () { - std::ofstream logfile ("vectors_rhs_01/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (4); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/vectors_rhs_03.cc b/tests/deal.II/vectors_rhs_03.cc index 078f7c671c..190fd40081 100644 --- a/tests/deal.II/vectors_rhs_03.cc +++ b/tests/deal.II/vectors_rhs_03.cc @@ -107,7 +107,7 @@ check () int main () { - std::ofstream logfile ("vectors_rhs_03/output"); + std::ofstream logfile ("output"); deallog << std::setprecision (4); deallog << std::fixed; deallog.attach(logfile); diff --git a/tests/deal.II/vertex_as_face_01.cc b/tests/deal.II/vertex_as_face_01.cc index 1f7487b738..3d67b701b5 100644 --- a/tests/deal.II/vertex_as_face_01.cc +++ b/tests/deal.II/vertex_as_face_01.cc @@ -54,7 +54,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_01/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/vertex_as_face_02.cc b/tests/deal.II/vertex_as_face_02.cc index deea3caa90..b2ba92cf27 100644 --- a/tests/deal.II/vertex_as_face_02.cc +++ b/tests/deal.II/vertex_as_face_02.cc @@ -54,7 +54,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_02/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/vertex_as_face_03.cc b/tests/deal.II/vertex_as_face_03.cc index 7b3bdbc886..2c9bf14c9f 100644 --- a/tests/deal.II/vertex_as_face_03.cc +++ b/tests/deal.II/vertex_as_face_03.cc @@ -54,7 +54,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_03/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/vertex_as_face_04.cc b/tests/deal.II/vertex_as_face_04.cc index 4a79ab2f0f..173b7c118e 100644 --- a/tests/deal.II/vertex_as_face_04.cc +++ b/tests/deal.II/vertex_as_face_04.cc @@ -54,7 +54,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_04/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/vertex_as_face_05.cc b/tests/deal.II/vertex_as_face_05.cc index 21cc9d07dc..9d72c840f3 100644 --- a/tests/deal.II/vertex_as_face_05.cc +++ b/tests/deal.II/vertex_as_face_05.cc @@ -65,7 +65,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_05/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/vertex_as_face_06.cc b/tests/deal.II/vertex_as_face_06.cc index e7740bcd5e..8c3aa3268e 100644 --- a/tests/deal.II/vertex_as_face_06.cc +++ b/tests/deal.II/vertex_as_face_06.cc @@ -75,7 +75,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_06/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/vertex_as_face_07.cc b/tests/deal.II/vertex_as_face_07.cc index 45792256cb..5060a3cc6c 100644 --- a/tests/deal.II/vertex_as_face_07.cc +++ b/tests/deal.II/vertex_as_face_07.cc @@ -116,7 +116,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_07/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/vertex_as_face_08.cc b/tests/deal.II/vertex_as_face_08.cc index 86633aef9b..a95be369ae 100644 --- a/tests/deal.II/vertex_as_face_08.cc +++ b/tests/deal.II/vertex_as_face_08.cc @@ -46,7 +46,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_08/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/vertex_as_face_09.cc b/tests/deal.II/vertex_as_face_09.cc index e843a55556..226cb65aba 100644 --- a/tests/deal.II/vertex_as_face_09.cc +++ b/tests/deal.II/vertex_as_face_09.cc @@ -48,7 +48,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_09/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/vertex_as_face_10.cc b/tests/deal.II/vertex_as_face_10.cc index 5b33a533a5..156983fb03 100644 --- a/tests/deal.II/vertex_as_face_10.cc +++ b/tests/deal.II/vertex_as_face_10.cc @@ -48,7 +48,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_10/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/vertex_as_face_11.cc b/tests/deal.II/vertex_as_face_11.cc index 915bf2482a..8555f329bd 100644 --- a/tests/deal.II/vertex_as_face_11.cc +++ b/tests/deal.II/vertex_as_face_11.cc @@ -45,7 +45,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_11/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/vertex_as_face_12.cc b/tests/deal.II/vertex_as_face_12.cc index 0b518aff62..a985663665 100644 --- a/tests/deal.II/vertex_as_face_12.cc +++ b/tests/deal.II/vertex_as_face_12.cc @@ -44,7 +44,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_12/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/vertex_as_face_13.cc b/tests/deal.II/vertex_as_face_13.cc index a7deb23551..6cad312dd3 100644 --- a/tests/deal.II/vertex_as_face_13.cc +++ b/tests/deal.II/vertex_as_face_13.cc @@ -45,7 +45,7 @@ void test () int main () { - std::ofstream logfile("vertex_as_face_13/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0);