From ee96b4b246a3022a8e35f0f2ad8dbbeb26a50c71 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Wed, 21 Aug 2013 14:38:24 +0000 Subject: [PATCH] Fix output paths git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30374 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/aniso/anisotropic_crash.cc | 2 +- tests/aniso/fe_tools.cc | 2 +- tests/aniso/hp_constraints_dgp_08.cc | 2 +- tests/aniso/hp_constraints_dgp_monomial_08.cc | 2 +- tests/aniso/hp_constraints_dgp_nonparametric_08.cc | 2 +- tests/aniso/hp_constraints_dgq_08.cc | 2 +- tests/aniso/mesh_3d_21.cc | 2 +- tests/aniso/refine_and_coarsen_anisotropic.cc | 4 ++-- tests/aniso/solution_transfer.cc | 2 +- tests/aniso/up_and_down.cc | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/aniso/anisotropic_crash.cc b/tests/aniso/anisotropic_crash.cc index 34b5fb308e..e161152c9e 100644 --- a/tests/aniso/anisotropic_crash.cc +++ b/tests/aniso/anisotropic_crash.cc @@ -38,7 +38,7 @@ using namespace dealii; int main() { - std::ofstream logfile ("anisotropic_crash/output"); + std::ofstream logfile ("output"); logfile.precision (3); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/aniso/fe_tools.cc b/tests/aniso/fe_tools.cc index efa7869b27..b1d5eed4f8 100644 --- a/tests/aniso/fe_tools.cc +++ b/tests/aniso/fe_tools.cc @@ -170,7 +170,7 @@ void test_projection (std::ostream &out) int main() { - std::ofstream logfile("fe_tools/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); deallog << std::setprecision(5); diff --git a/tests/aniso/hp_constraints_dgp_08.cc b/tests/aniso/hp_constraints_dgp_08.cc index 8f22793248..ea91d37003 100644 --- a/tests/aniso/hp_constraints_dgp_08.cc +++ b/tests/aniso/hp_constraints_dgp_08.cc @@ -18,7 +18,7 @@ // check that computation of hp constraints works for DGP elements correctly -char logname[] = "hp_constraints_dgp_08/output"; +char logname[] = "output"; #include "../hp/hp_constraints_common.h" diff --git a/tests/aniso/hp_constraints_dgp_monomial_08.cc b/tests/aniso/hp_constraints_dgp_monomial_08.cc index 3c5ad3d265..b2e0bc9257 100644 --- a/tests/aniso/hp_constraints_dgp_monomial_08.cc +++ b/tests/aniso/hp_constraints_dgp_monomial_08.cc @@ -18,7 +18,7 @@ // check that computation of hp constraints works for DGP_Monomial elements correctly -char logname[] = "hp_constraints_dgp_monomial_08/output"; +char logname[] = "output"; #include "../hp/hp_constraints_common.h" diff --git a/tests/aniso/hp_constraints_dgp_nonparametric_08.cc b/tests/aniso/hp_constraints_dgp_nonparametric_08.cc index 59fe4fa9a7..a32ff19599 100644 --- a/tests/aniso/hp_constraints_dgp_nonparametric_08.cc +++ b/tests/aniso/hp_constraints_dgp_nonparametric_08.cc @@ -19,7 +19,7 @@ // check that computation of hp constraints works for DGPNonparametric elements // correctly on a uniformly refined mesh for functions of degree q -char logname[] = "hp_constraints_dgp_nonparametric_08/output"; +char logname[] = "output"; #include "../hp/hp_constraints_common.h" diff --git a/tests/aniso/hp_constraints_dgq_08.cc b/tests/aniso/hp_constraints_dgq_08.cc index 24f29fc550..baa0fae1cf 100644 --- a/tests/aniso/hp_constraints_dgq_08.cc +++ b/tests/aniso/hp_constraints_dgq_08.cc @@ -18,7 +18,7 @@ // check that computation of hp constraints works for DGQ elements correctly -char logname[] = "hp_constraints_dgq_08/output"; +char logname[] = "output"; #include "../hp/hp_constraints_common.h" diff --git a/tests/aniso/mesh_3d_21.cc b/tests/aniso/mesh_3d_21.cc index c23032f94a..0b68c02437 100644 --- a/tests/aniso/mesh_3d_21.cc +++ b/tests/aniso/mesh_3d_21.cc @@ -181,7 +181,7 @@ void check2 (Triangulation<3> &orig_tria) int main () { - std::ofstream logfile("mesh_3d_21/output"); + std::ofstream logfile("output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/aniso/refine_and_coarsen_anisotropic.cc b/tests/aniso/refine_and_coarsen_anisotropic.cc index 647e064203..0097f41fbb 100644 --- a/tests/aniso/refine_and_coarsen_anisotropic.cc +++ b/tests/aniso/refine_and_coarsen_anisotropic.cc @@ -100,7 +100,7 @@ void test_isotropic (int type, std::ostream *logfile) 300, .01, false, 5, false); grid_out.set_flags (eps2); std::ostringstream filename; - filename << "refine_and_coarsen_anisotropic/grid_" << type << "_" << cycle << ".eps"; + filename << "grid_" << type << "_" << cycle << ".eps"; std::ofstream outfile(filename.str().c_str()); grid_out.write_eps (tria, outfile); } @@ -121,7 +121,7 @@ int main () std::ostream *logfile; if (single_file) - logfile = new std::ofstream("refine_and_coarsen_anisotropic/output"); + logfile = new std::ofstream("output"); else logfile = &std::cout; diff --git a/tests/aniso/solution_transfer.cc b/tests/aniso/solution_transfer.cc index ad62b77dbc..91ea38ca26 100644 --- a/tests/aniso/solution_transfer.cc +++ b/tests/aniso/solution_transfer.cc @@ -129,7 +129,7 @@ void transfer(std::ostream &out) int main() { - std::ofstream logfile("solution_transfer/output"); + std::ofstream logfile("output"); deallog << std::setprecision (4); logfile << std::setprecision (4); deallog.attach(logfile); diff --git a/tests/aniso/up_and_down.cc b/tests/aniso/up_and_down.cc index 453bcef29f..834412df6d 100644 --- a/tests/aniso/up_and_down.cc +++ b/tests/aniso/up_and_down.cc @@ -240,7 +240,7 @@ void test () int main() { - std::ofstream logfile ("up_and_down/output"); + std::ofstream logfile ("output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); -- 2.39.5