[SWDEV-467733] - Set Cache Config Negative Param test fix

Change-Id: I058ca23a05e63aaaa54ea22e2b509593764cd7bc


[ROCm/hip-tests commit: 4e99f68b03]
Этот коммит содержится в:
Rahul Manocha
2024-06-29 13:24:44 -07:00
коммит произвёл Rakesh Roy
родитель 0ad2a9912a
Коммит 51620a1bb6
3 изменённых файлов: 2 добавлений и 4 удалений
+1
Просмотреть файл
@@ -24,6 +24,7 @@
"Unit_hipInit_Negative",
"Unit_hipDeviceReset_Positive_Basic",
"Unit_hipDeviceReset_Positive_Threaded",
"Unit_hipDeviceSetCacheConfig_Negative_Parameters",
"Unit_hipFuncSetCacheConfig_Positive_Basic",
"Unit_hipFuncSetCacheConfig_Negative_Parameters",
"Unit_hipFuncSetSharedMemConfig_Positive_Basic",
+1
Просмотреть файл
@@ -105,6 +105,7 @@
"Note: intermittent Seg fault failure ",
"Unit_hipGraphAddEventRecordNode_Functional_WithoutFlags",
"Unit_hipGraphAddChildGraphNode_MultGraphsAsSingleGraph",
"Unit_hipDeviceSetCacheConfig_Negative_Parameters",
"Unit_hipFuncSetCacheConfig_Positive_Basic",
"Unit_hipFuncSetCacheConfig_Negative_Parameters",
"Unit_hipFuncSetSharedMemConfig_Positive_Basic",
-4
Просмотреть файл
@@ -75,11 +75,7 @@ TEST_CASE("Unit_hipDeviceSetCacheConfig_Positive_Basic") {
* - HIP_VERSION >= 5.2
*/
TEST_CASE("Unit_hipDeviceSetCacheConfig_Negative_Parameters") {
#if HT_AMD
HIP_CHECK_ERROR(hipDeviceSetCacheConfig(static_cast<hipFuncCache_t>(-1)), hipSuccess);
#elif HT_NVIDIA
HIP_CHECK_ERROR(hipDeviceSetCacheConfig(static_cast<hipFuncCache_t>(-1)), hipErrorInvalidValue);
#endif
}
/**