]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix output paths
authorMatthias Maier <tamiko@kyomu.43-1.org>
Wed, 21 Aug 2013 14:38:24 +0000 (14:38 +0000)
committerMatthias Maier <tamiko@kyomu.43-1.org>
Wed, 21 Aug 2013 14:38:24 +0000 (14:38 +0000)
git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30374 0785d39b-7218-0410-832d-ea1e28bc413d

tests/aniso/anisotropic_crash.cc
tests/aniso/fe_tools.cc
tests/aniso/hp_constraints_dgp_08.cc
tests/aniso/hp_constraints_dgp_monomial_08.cc
tests/aniso/hp_constraints_dgp_nonparametric_08.cc
tests/aniso/hp_constraints_dgq_08.cc
tests/aniso/mesh_3d_21.cc
tests/aniso/refine_and_coarsen_anisotropic.cc
tests/aniso/solution_transfer.cc
tests/aniso/up_and_down.cc

index 34b5fb308e3cf34fc01f12b89b06a9c50f9f0ffd..e161152c9e4470c7aacd0c16d2fa7309ce49f7d0 100644 (file)
@@ -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);
index efa7869b279fb13e07870d6764e0dc925b23f80a..b1d5eed4f879c3eb7e72121670f0d5e2e4fb1a51 100644 (file)
@@ -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);
index 8f227932487f5bb2ebbca859514613ad9c5dcad3..ea91d37003579e991028935ec46b593e26090bcb 100644 (file)
@@ -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"
index 3c5ad3d265529e88d370f177de4d45705297f2a4..b2e0bc9257e92d265144cc889f09cc7086c6cd4f 100644 (file)
@@ -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"
index 59fe4fa9a75272c26e7ff6b148cc1d2f540d6116..a32ff19599b8a8ce2d82f53861fef52dd0edf364 100644 (file)
@@ -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"
index 24f29fc550f3f74107be185ca42821b41bcae417..baa0fae1cfa4417c878f7118f6818378d9ee4966 100644 (file)
@@ -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"
index c23032f94aa6eb7ca2002b852fe9adc4188f5f05..0b68c024376f10a4ae52c19d4cb5df0941e2fc7f 100644 (file)
@@ -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);
index 647e06420301f95882a45aebbe117d018432ae29..0097f41fbbd3ad53d89505a2371c6bd1ffae3064 100644 (file)
@@ -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;
 
index ad62b77dbce279a707daa72ff5fc92f5f931b46b..91ea38ca2650fdd86b563d772524f9ff39306672 100644 (file)
@@ -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);
index 453bcef29f6f61d60555cb730d6b057f737f296b..834412df6d41801ddfebfaf65e5ccb3754841273 100644 (file)
@@ -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);

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.