From: bangerth Date: Mon, 14 Jul 2014 23:04:24 +0000 (+0000) Subject: Do not write copies of the output to /tmp. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4998d22a7d4d697335ad1c3dd88c975566fd8e5;p=dealii-svn.git Do not write copies of the output to /tmp. git-svn-id: https://svn.dealii.org/trunk@33177 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/manifold/manifold_id_05.cc b/tests/manifold/manifold_id_05.cc index b191e64673..7aaa40c483 100644 --- a/tests/manifold/manifold_id_05.cc +++ b/tests/manifold/manifold_id_05.cc @@ -1,5 +1,5 @@ //---------------------------- manifold_id_05.cc --------------------------- -// Copyright (C) 2011, 2013 by the mathLab team. +// Copyright (C) 2011, 2013, 2014 by the mathLab team. // // This file is subject to LGPL and may not be distributed // without copyright and license information. Please refer @@ -57,11 +57,6 @@ void test(unsigned int ref=1) GridOut gridout; gridout.write_msh(tria, deallog.get_file_stream()); - char fname[30]; - sprintf(fname, "/tmp/id_5_mesh_%d_%d.msh", - dim, spacedim); - std::ofstream ofile(fname); - gridout.write_msh(tria,ofile); } int main () diff --git a/tests/manifold/manifold_id_06.cc b/tests/manifold/manifold_id_06.cc index e6d7c70af4..0a96f74a0a 100644 --- a/tests/manifold/manifold_id_06.cc +++ b/tests/manifold/manifold_id_06.cc @@ -1,5 +1,5 @@ //---------------------------- manifold_id_06.cc --------------------------- -// Copyright (C) 2011, 2013 by the mathLab team. +// Copyright (C) 2011, 2013, 2014 by the mathLab team. // // This file is subject to LGPL and may not be distributed // without copyright and license information. Please refer @@ -58,11 +58,6 @@ void test(unsigned int ref=1) GridOut gridout; gridout.write_msh(tria, deallog.get_file_stream()); - char fname[30]; - sprintf(fname, "/tmp/id_6_mesh_%d_%d.msh", - dim, spacedim); - std::ofstream ofile(fname); - gridout.write_msh(tria,ofile); } int main () diff --git a/tests/manifold/manifold_id_07.cc b/tests/manifold/manifold_id_07.cc index 96635f1862..46799bdebe 100644 --- a/tests/manifold/manifold_id_07.cc +++ b/tests/manifold/manifold_id_07.cc @@ -1,5 +1,5 @@ //---------------------------- manifold_id_05.cc --------------------------- -// Copyright (C) 2011, 2013 by the mathLab team. +// Copyright (C) 2011, 2013, 2014 by the mathLab team. // // This file is subject to LGPL and may not be distributed // without copyright and license information. Please refer @@ -59,11 +59,6 @@ void test(unsigned int ref=1) GridOut gridout; gridout.write_msh(tria, deallog.get_file_stream()); - char fname[30]; - sprintf(fname, "/tmp/id_7_mesh_%d_%d.msh", - dim, spacedim); - std::ofstream ofile(fname); - gridout.write_msh(tria,ofile); tria.set_manifold(1); }