From dafdc74be6e4ee7d4a243bcf3bff5323733d0e64 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Sun, 27 Dec 2020 09:55:51 +0100 Subject: [PATCH] Fix output of grid/cell_id_08 --- tests/grid/cell_id_08.cc | 15 +++++++++------ tests/grid/cell_id_08.output | 3 --- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/grid/cell_id_08.cc b/tests/grid/cell_id_08.cc index 47031eb788..0e5b824c75 100644 --- a/tests/grid/cell_id_08.cc +++ b/tests/grid/cell_id_08.cc @@ -105,8 +105,9 @@ benchmark(const unsigned int n_global_refinements) AssertThrow(cell_ids == deserialized, ExcMessage("Serialization with boost binary archives failed.")); deallog << "Serialization with boost binary archives successful." - << std::endl - << " Buffer size in bytes: " << size_in_bytes(buffer) << std::endl; + << std::endl; + std::cout << " Buffer size in bytes: " << size_in_bytes(buffer) + << std::endl; } @@ -142,8 +143,9 @@ benchmark(const unsigned int n_global_refinements) } AssertThrow(cell_ids == deserialized, ExcMessage("Serialization with Utilities failed.")); - deallog << "Serialization with Utilities successful." << std::endl - << " Buffer size in bytes: " << size_in_bytes(buffer) << std::endl; + deallog << "Serialization with Utilities successful." << std::endl; + std::cout << " Buffer size in bytes: " << size_in_bytes(buffer) + << std::endl; } @@ -170,8 +172,9 @@ benchmark(const unsigned int n_global_refinements) AssertThrow(cell_ids == deserialized, ExcMessage("Serialization with binary representation failed.")); deallog << "Serialization with binary representation successful." - << std::endl - << " Buffer size in bytes: " << size_in_bytes(buffer) << std::endl; + << std::endl; + std::cout << " Buffer size in bytes: " << size_in_bytes(buffer) + << std::endl; } deallog << "OK" << std::endl; diff --git a/tests/grid/cell_id_08.output b/tests/grid/cell_id_08.output index 22ff31e140..b6bdf1050c 100644 --- a/tests/grid/cell_id_08.output +++ b/tests/grid/cell_id_08.output @@ -2,9 +2,6 @@ DEAL::Creation successful. DEAL:: Number of CellId objects: 256 DEAL::Serialization with boost binary archives successful. -DEAL:: Buffer size in bytes: 11875 DEAL::Serialization with Utilities successful. -DEAL:: Buffer size in bytes: 10264 DEAL::Serialization with binary representation successful. -DEAL:: Buffer size in bytes: 4120 DEAL::OK -- 2.39.5