Skip to content

Commit

Permalink
Reintroduce test skip for nvhpc < 23.3
Browse files Browse the repository at this point in the history
  • Loading branch information
crtrott committed May 9, 2023
1 parent 417a6ee commit 41d9d06
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion core/unit_test/TestJoinBackwardCompatibility.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// unimplemented reduction features
namespace {

// FIXME_NVHPC errors out when using enums here
// FIXME_NVHPC 23.3 errors out when using enums here
// NVC++-F-0000-Internal compiler error. process_acc_put_dinit: unexpected
// datatype 5339
#ifndef KOKKOS_COMPILER_NVHPC
Expand Down Expand Up @@ -144,6 +144,11 @@ void test_join_backward_compatibility() {
}

TEST(TEST_CATEGORY, join_backward_compatibility) {
#if defined(KOKKOS_ENABLE_CUDA) && defined(KOKKOS_COMPILER_NVHPC) && \
KOKKOS_COMPILER_NVHPC < \
230300 // FIXME_NVHPC test passes with workaround in 23.3
GTEST_SKIP() << "FIXME wrong result";
#endif
test_join_backward_compatibility();
}

Expand Down

0 comments on commit 41d9d06

Please sign in to comment.