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]
这个提交包含在:
Maneesh Gupta
2022-06-13 08:23:17 +05:30
提交者 GitHub
父节点 aae926bfbd
当前提交 ad24c4924c
@@ -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);
}