//@HEADER // ************************************************************************ // // Kokkos v. 4.0 // Copyright (2022) National Technology & Engineering // Solutions of Sandia, LLC (NTESS). // // Under the terms of Contract DE-NA0003525 with NTESS, // the U.S. Government retains certain rights in this software. // // Part of Kokkos, under the Apache License v2.0 with LLVM Exceptions. // See https://kokkos.org/LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //@HEADER #include namespace Test { TEST(TEST_CATEGORY, view_api_d) { TestViewAPI::run_test_const(); TestViewAPI::run_test_subview(); TestViewAPI::run_test_subview_strided(); TestViewAPI::run_test_vector(); TestViewAPI::run_test_view_operator_c(); } TEST(TEST_CATEGORY, view_allocation_error) { #if defined(__has_feature) #if __has_feature(address_sanitizer) GTEST_SKIP() << "AddressSanitzer detects allocating too much memory " "preventing our checks to run"; #endif #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) { GTEST_SKIP() << "acc_malloc() not properly returning nullptr"; } #endif TestViewAPI::run_test_error(); } } // namespace Test