summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Grodzovsky <andrey.grodzovsky@amd.com>2017-12-15 13:21:02 -0500
committerAndrey Grodzovsky <andrey.grodzovsky@amd.com>2017-12-15 13:30:53 -0500
commit4f8e426884a51b6786459ea2505f1ce82a13a87c (patch)
tree7dc3f54892df37961f391155b3c8c97420552784
parent6a6b7432bfe94f8047b688fd6875ad93d153c6d0 (diff)
tests/amdgpu: Add return CUE_SUCCESS to suite_vcn_tests_clean.
fixes: 806d0803600000faecb4025d8e9c7490cb097c25 (amdgpu: Use new suite/test disabling functionality.) bug: https://bugs.freedesktop.org/show_bug.cgi?id=104280 Signed-off-by: Andrey Grodzovsky <andrey.grodzovsky@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com>
-rw-r--r--tests/amdgpu/vcn_tests.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/amdgpu/vcn_tests.c b/tests/amdgpu/vcn_tests.c
index 53a2d08e..9224bc37 100644
--- a/tests/amdgpu/vcn_tests.c
+++ b/tests/amdgpu/vcn_tests.c
@@ -144,6 +144,8 @@ int suite_vcn_tests_clean(void)
r = amdgpu_device_deinitialize(device_handle);
if (r)
return CUE_SCLEAN_FAILED;
+
+ return CUE_SUCCESS;
}
static int submit(unsigned ndw, unsigned ip)