From 2e94ec45eda031b339dbe990ac235ea6653dedd1 Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Wed, 30 Dec 2020 20:06:38 -0700 Subject: [PATCH] Update grid/cell_id_08 output. --- tests/grid/cell_id_08.cc | 11 ++++++----- tests/grid/cell_id_08.output | 1 - 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/grid/cell_id_08.cc b/tests/grid/cell_id_08.cc index 0e5b824c75..99afe1f9a5 100644 --- a/tests/grid/cell_id_08.cc +++ b/tests/grid/cell_id_08.cc @@ -74,8 +74,8 @@ benchmark(const unsigned int n_global_refinements) for (const auto &cell : tria.active_cell_iterators()) cell_ids.push_back(cell->id()); } - deallog << "Creation successful." << std::endl - << " Number of CellId objects: " << cell_ids.size() << std::endl; + deallog << "Creation successful." << std::endl; + std::cout << "Number of CellId objects: " << cell_ids.size() << std::endl; // @@ -106,7 +106,8 @@ benchmark(const unsigned int n_global_refinements) ExcMessage("Serialization with boost binary archives failed.")); deallog << "Serialization with boost binary archives successful." << std::endl; - std::cout << " Buffer size in bytes: " << size_in_bytes(buffer) + std::cout << "Buffer size in bytes with ..." + << " boost binary_archive : " << size_in_bytes(buffer) << std::endl; } @@ -144,7 +145,7 @@ benchmark(const unsigned int n_global_refinements) AssertThrow(cell_ids == deserialized, ExcMessage("Serialization with Utilities failed.")); deallog << "Serialization with Utilities successful." << std::endl; - std::cout << " Buffer size in bytes: " << size_in_bytes(buffer) + std::cout << " Utilities : " << size_in_bytes(buffer) << std::endl; } @@ -173,7 +174,7 @@ benchmark(const unsigned int n_global_refinements) ExcMessage("Serialization with binary representation failed.")); deallog << "Serialization with binary representation successful." << std::endl; - std::cout << " Buffer size in bytes: " << size_in_bytes(buffer) + std::cout << " binary representation: " << size_in_bytes(buffer) << std::endl; } diff --git a/tests/grid/cell_id_08.output b/tests/grid/cell_id_08.output index b6bdf1050c..4d9813efe1 100644 --- a/tests/grid/cell_id_08.output +++ b/tests/grid/cell_id_08.output @@ -1,6 +1,5 @@ DEAL::Creation successful. -DEAL:: Number of CellId objects: 256 DEAL::Serialization with boost binary archives successful. DEAL::Serialization with Utilities successful. DEAL::Serialization with binary representation successful. -- 2.39.5