Skip to content

Commit

Permalink
#247: Check that serialized uninitialized DRV comes out uninitialized
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilMiller committed Jul 17, 2022
1 parent d2134f5 commit c9d6f9f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/unit/test_kokkos_serialize_dynrankview.cc
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ TYPED_TEST_P(KokkosDynRankViewTestEmpty, test_empty_any) {
ViewType in_view{};
auto out_view = serializeAny<ViewType>(in_view);
EXPECT_EQ(out_view->rank(), unsigned(0));
EXPECT_EQ(out_view->size(), unsigned(0));
}

TYPED_TEST_P(KokkosDynRankViewTest0D, test_0d_any) {
Expand Down

0 comments on commit c9d6f9f

Please sign in to comment.