From: Marc Fehling Date: Thu, 31 Dec 2020 03:06:38 +0000 (-0700) Subject: Update grid/cell_id_08 output. X-Git-Tag: v9.3.0-rc1~676^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e94ec45eda031b339dbe990ac235ea6653dedd1;p=dealii.git Update grid/cell_id_08 output. --- 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.