Skip to content

Commit

Permalink
Remove unsigned type from MPI bindings tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thoasm committed Jul 12, 2024
1 parent 9f45b22 commit 869b2c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/test/mpi/base/bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ class MpiBindings : public ::testing::Test {
std::shared_ptr<gko::Executor> ref;
};

TYPED_TEST_SUITE(MpiBindings, gko::test::PODTypes, TypenameNameGenerator);
using TestTypes =
gko::test::merge_type_list_t<gko::test::ValueTypes, gko::test::IndexTypes>;

TYPED_TEST_SUITE(MpiBindings, TestTypes, TypenameNameGenerator);


TYPED_TEST(MpiBindings, CanSetADefaultwindow)
Expand Down

0 comments on commit 869b2c4

Please sign in to comment.