summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichel Dänzer <michel.daenzer@amd.com>2018-01-16 16:48:45 +0100
committerMichel Dänzer <michel@daenzer.net>2018-01-26 15:25:17 +0100
commit8e75f5a1453b1699b91992493e2d2e2a6236965c (patch)
treeccba1ca6d3b3df4cd85463c272c758aa7e0416b0 /tests
parent429bb5820d2bb1e99dba15c05e912226be1ad1fc (diff)
amdgpu: Disable deadlock test suite by default for SI ASICs
Hangs my Cape Verde. Acked-by: Christian König <christian.koenig@amd.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/amdgpu/deadlock_tests.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/amdgpu/deadlock_tests.c b/tests/amdgpu/deadlock_tests.c
index fc49c48a..aaeea871 100644
--- a/tests/amdgpu/deadlock_tests.c
+++ b/tests/amdgpu/deadlock_tests.c
@@ -96,7 +96,8 @@ CU_BOOL suite_deadlock_tests_enable(void)
&minor_version, &device_handle))
return CU_FALSE;
- if (device_handle->info.family_id == AMDGPU_FAMILY_AI) {
+ if (device_handle->info.family_id == AMDGPU_FAMILY_AI ||
+ device_handle->info.family_id == AMDGPU_FAMILY_SI) {
printf("\n\nCurrently hangs the CP on this ASIC, deadlock suite disabled\n");
enable = CU_FALSE;
}