From: Timo Heister Date: Mon, 17 Jun 2013 04:47:47 +0000 (+0000) Subject: update output location X-Git-Tag: v8.0.0~283 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7341f0a08fd88c18306c754ce57f009e216ca0fa;p=dealii.git update output location git-svn-id: https://svn.dealii.org/trunk@29834 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/multigrid/step-39-02.cc b/tests/multigrid/step-39-02.cc index 4ad6d11b8d..ca9c4a620b 100644 --- a/tests/multigrid/step-39-02.cc +++ b/tests/multigrid/step-39-02.cc @@ -643,7 +643,7 @@ namespace Step39 void InteriorPenaltyProblem::output_results (const unsigned int cycle) const { char *fn = new char[100]; - sprintf(fn, "sol-%02d", cycle); + sprintf(fn, "step-39-02/sol-%02d", cycle); std::string filename(fn); filename += ".gnuplot"; diff --git a/tests/multigrid/step-39-03.cc b/tests/multigrid/step-39-03.cc index 56e1af65b8..dba1dfc260 100644 --- a/tests/multigrid/step-39-03.cc +++ b/tests/multigrid/step-39-03.cc @@ -644,7 +644,7 @@ namespace Step39 void InteriorPenaltyProblem::output_results (const unsigned int cycle) const { char *fn = new char[100]; - sprintf(fn, "sol-%02d", cycle); + sprintf(fn, "step-39-03/sol-%02d", cycle); std::string filename(fn); filename += ".gnuplot"; diff --git a/tests/multigrid/step-39.cc b/tests/multigrid/step-39.cc index f611ca7289..1d4ebe3853 100644 --- a/tests/multigrid/step-39.cc +++ b/tests/multigrid/step-39.cc @@ -638,7 +638,7 @@ namespace Step39 void InteriorPenaltyProblem::output_results (const unsigned int cycle) const { char *fn = new char[100]; - sprintf(fn, "sol-%02d", cycle); + sprintf(fn, "step-39/sol-%02d", cycle); std::string filename(fn); filename += ".gnuplot";