From 35cdc728776c2fb98cc478ebc4cdc413e00e7162 Mon Sep 17 00:00:00 2001 From: Peter Hill Date: Mon, 4 Feb 2019 17:29:54 +0000 Subject: [PATCH] Remove some unnecessary code from test-smooth --- tests/integrated/test-smooth/test_smooth.cxx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/integrated/test-smooth/test_smooth.cxx b/tests/integrated/test-smooth/test_smooth.cxx index 15f7c656ec..c4670656c1 100644 --- a/tests/integrated/test-smooth/test_smooth.cxx +++ b/tests/integrated/test-smooth/test_smooth.cxx @@ -17,7 +17,6 @@ int main(int argc, char **argv) { Field2D input2d = f.create2D("1 + sin(2*y)"); Field3D input3d = f.create3D("gauss(x-0.5,0.2)*gauss(y-pi)*sin(3*y - z)"); - input3d.splitYupYdown(); mesh->getParallelTransform().calcYUpDown(input3d); SAVE_ONCE2(input2d, input3d); @@ -32,11 +31,6 @@ int main(int argc, char **argv) { // Output data dump.write(); - dump.close(); - - output << "\nFinished running test. Triggering error to quit\n\n"; - - MPI_Barrier(BoutComm::get()); // Wait for all processors to write data BoutFinalise(); return 0;