Skip to content

Commit

Permalink
Skip Tpetra reproducer with NVHPC compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
dalg24 committed Feb 1, 2023
1 parent 9d7257a commit c10edf3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion core/unit_test/TestAtomics.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -578,6 +578,12 @@ struct TpetraUseCase {
}
};

TEST(TEST_CATEGORY, atomics_tpetra_max_abs) { TpetraUseCase().check(); }
TEST(TEST_CATEGORY, atomics_tpetra_max_abs) {
#ifdef KOKKOS_COMPILER_NVHPC
GTEST_SKIP() << "FIXME_NVHPC (?)";
#endif

TpetraUseCase().check();
}

} // namespace Test

0 comments on commit c10edf3

Please sign in to comment.