Update hipHostMallocTests.cc
std::numeric_limits::max() conflicts with max() defined in windows headers. Wrap it in parenthesis to prevent macro expansion.
[ROCm/hip-tests commit: 96fe505311]
这个提交包含在:
@@ -46,12 +46,12 @@ TEST_CASE("Unit_hipHostMalloc_ArgValidation") {
|
||||
}
|
||||
|
||||
SECTION("Size as max(size_t)") {
|
||||
HIP_CHECK_ERROR(hipHostMalloc(&ptr, std::numeric_limits<std::size_t>::max()),
|
||||
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()),
|
||||
HIP_CHECK_ERROR(hipHostMalloc(&ptr, allocSize, (std::numeric_limits<unsigned int>::max)()),
|
||||
hipErrorInvalidValue);
|
||||
}
|
||||
|
||||
|
||||
在新工单中引用
屏蔽一个用户