diff options
author | Likun Gao <Likun.Gao@amd.com> | 2018-08-14 19:10:10 +0800 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2018-08-16 13:45:20 -0500 |
commit | cc472c5bb30262defe07d9fb1ef0fe6a020b2ea9 (patch) | |
tree | b05c030bf98e7a6381ca7e791d9cd3f00b33f3b9 | |
parent | bc4c9f442246b8f39a6edf2673400cd97f3e1133 (diff) |
amdgpu: Disable deadlock test suite for RV
disable deadlock test suite for RV
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Huang Rui <ray.huang@amd.com>
Signed-off-by: Likun Gao <Likun.Gao@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | tests/amdgpu/deadlock_tests.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/amdgpu/deadlock_tests.c b/tests/amdgpu/deadlock_tests.c index 1eb5761a..304482d7 100644 --- a/tests/amdgpu/deadlock_tests.c +++ b/tests/amdgpu/deadlock_tests.c @@ -93,7 +93,8 @@ CU_BOOL suite_deadlock_tests_enable(void) return CU_FALSE; if (device_handle->info.family_id == AMDGPU_FAMILY_AI || - device_handle->info.family_id == AMDGPU_FAMILY_SI) { + device_handle->info.family_id == AMDGPU_FAMILY_SI || + device_handle->info.family_id == AMDGPU_FAMILY_RV) { printf("\n\nCurrently hangs the CP on this ASIC, deadlock suite disabled\n"); enable = CU_FALSE; } |