aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/amdgpu/deadlock_tests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/amdgpu/deadlock_tests.c b/tests/amdgpu/deadlock_tests.c
index 9a428858..fc49c48a 100644
--- a/tests/amdgpu/deadlock_tests.c
+++ b/tests/amdgpu/deadlock_tests.c
@@ -245,6 +245,8 @@ static void amdgpu_deadlock_helper(unsigned ip_type)
245 AMDGPU_TIMEOUT_INFINITE,0, &expired); 245 AMDGPU_TIMEOUT_INFINITE,0, &expired);
246 CU_ASSERT_EQUAL((r == 0 || r == -ECANCELED), 1); 246 CU_ASSERT_EQUAL((r == 0 || r == -ECANCELED), 1);
247 247
248 pthread_join(stress_thread, NULL);
249
248 r = amdgpu_bo_list_destroy(bo_list); 250 r = amdgpu_bo_list_destroy(bo_list);
249 CU_ASSERT_EQUAL(r, 0); 251 CU_ASSERT_EQUAL(r, 0);
250 252
@@ -254,6 +256,4 @@ static void amdgpu_deadlock_helper(unsigned ip_type)
254 256
255 r = amdgpu_cs_ctx_free(context_handle); 257 r = amdgpu_cs_ctx_free(context_handle);
256 CU_ASSERT_EQUAL(r, 0); 258 CU_ASSERT_EQUAL(r, 0);
257
258 pthread_join(stress_thread, NULL);
259} 259}