ad24c4924c
std::numeric_limits::max() conflicts with max() defined in windows headers. Wrap it in parenthesis to prevent macro expansion.
[ROCm/hip-tests commit: 96fe505311]
69 строки
2.6 KiB
C++
69 строки
2.6 KiB
C++
/*
|
|
Copyright (c) 2022 Advanced Micro Devices, Inc. All rights reserved.
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANNTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER INN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR INN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*/
|
|
|
|
/**
|
|
Testcase Scenarios :
|
|
|
|
1) Test hipHostMalloc() api with ptr as nullptr and check for return value.
|
|
2) Test hipHostMalloc() api with size as max(size_t) and check for OOM error.
|
|
3) Test hipHostMalloc() api with flags as max(unsigned int) and validate
|
|
return value.
|
|
4) Pass size as zero for hipHostMalloc() api and check ptr is reset with
|
|
with return value success.
|
|
*/
|
|
|
|
#include <hip_test_common.hh>
|
|
#include <hip_test_helper.hh>
|
|
|
|
/**
|
|
* Performs argument validation of hipHostMalloc api.
|
|
*/
|
|
TEST_CASE("Unit_hipHostMalloc_ArgValidation") {
|
|
#if HT_NVIDIA
|
|
HipTest::HIP_SKIP_TEST("TODO: Need to debug");
|
|
#endif
|
|
constexpr size_t allocSize = 1000;
|
|
char* ptr;
|
|
|
|
SECTION("Pass ptr as nullptr") {
|
|
HIP_CHECK_ERROR(hipHostMalloc(static_cast<void**>(nullptr), allocSize), hipErrorInvalidValue);
|
|
}
|
|
|
|
SECTION("Size as max(size_t)") {
|
|
HIP_CHECK_ERROR(hipHostMalloc(&ptr, (std::numeric_limits<std::size_t>::max)()),
|
|
hipErrorMemoryAllocation);
|
|
}
|
|
|
|
SECTION("Flags as max(uint)") {
|
|
HIP_CHECK_ERROR(hipHostMalloc(&ptr, allocSize, (std::numeric_limits<unsigned int>::max)()),
|
|
hipErrorInvalidValue);
|
|
}
|
|
|
|
SECTION("Pass size as zero and check ptr reset") {
|
|
HIP_CHECK(hipHostMalloc(&ptr, 0));
|
|
REQUIRE(ptr == nullptr);
|
|
}
|
|
|
|
SECTION("Pass hipHostMallocCoherent and hipHostMallocNonCoherent simultaneously") {
|
|
HIP_CHECK_ERROR(
|
|
hipHostMalloc(&ptr, allocSize, hipHostMallocCoherent | hipHostMallocNonCoherent),
|
|
hipErrorInvalidValue);
|
|
}
|
|
}
|