Update hipHostMallocTests.cc

std::numeric_limits::max() conflicts with max() defined in windows headers. Wrap it in parenthesis to prevent macro expansion.
Tento commit je obsažen v:
Maneesh Gupta
2022-06-13 08:23:17 +05:30
odevzdal GitHub
rodič 54b1822167
revize f356d2c33d
+2 -2
Zobrazit soubor
@@ -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);
}