Skip to content

Commit

Permalink
Disable openacc.view_allocation_error test
Browse files Browse the repository at this point in the history
  • Loading branch information
dalg24 committed Jan 19, 2024
1 parent 3d33665 commit 5781d17
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/unit_test/TestViewAPI_d.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ TEST(TEST_CATEGORY, view_allocation_error) {
#endif
#if ((HIP_VERSION_MAJOR == 5) && (HIP_VERSION_MINOR == 3))
GTEST_SKIP() << "ROCm 5.3 segfaults when trying to allocate too much memory";
#endif
#if defined(KOKKOS_ENABLE_OPENACC) // FIXME_OPENACC
if (std::is_same_v<TEST_EXECSPACE, Kokkos::Experimental::OpenACC>) {
GTEST_SKIP() << "acc_malloc() not properly returning nullptr";
}
#endif
TestViewAPI<double, TEST_EXECSPACE>::run_test_error();
}
Expand Down

0 comments on commit 5781d17

Please sign in to comment.