From 7bac2595d70d79e830017420142e46c93f83886e Mon Sep 17 00:00:00 2001 From: Jonathan Robey Date: Wed, 7 Jun 2017 11:11:51 -0700 Subject: [PATCH] Fix MPI torus test --- tests/mpi/torus.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/mpi/torus.cc b/tests/mpi/torus.cc index b0c72b50e5..a8995bf92d 100644 --- a/tests/mpi/torus.cc +++ b/tests/mpi/torus.cc @@ -72,7 +72,8 @@ int main(int argc, char *argv[]) if (Utilities::MPI::this_mpi_process (MPI_COMM_WORLD) == 0) { - initlog(); + static std::ofstream logfile("output"); + deallog.attach(logfile); deallog.threshold_double(1.e-10); } -- 2.39.5