aboutsummaryrefslogtreecommitdiffstats
path: root/tests/amdgpu/syncobj_tests.c
Commit message (Collapse)AuthorAgeFilesLines
* tests/amdgpu: Fix various warnings (v2)Luben Tuikov2020-01-081-1/+1
| | | | | | | | | | | | | | | | | | This patch fixes the following warnings: -Wformat= -Wmaybe-uninitialized -Wmisleading-indentation -Wstringop-truncation -Wunused-function -Wunused-variable It also removes forward declarations and moves global functions to the bottom, keeping locals at the top, in ras_tests.c. v2: Fix compilation. Signed-off-by: Luben Tuikov <luben.tuikov@amd.com>
* Revert "tests/amdgpu: Fix various warnings"Marek Olšák2020-01-071-1/+1
| | | | This reverts commit fb1634583f3ba22c67cad0df7022b6ac48a40c56.
* tests/amdgpu: Fix various warningsLuben Tuikov2020-01-071-1/+1
| | | | | | | | | | | | | | | | This patch fixes the following warnings: -Wformat= -Wmaybe-uninitialized -Wmisleading-indentation -Wstringop-truncation -Wunused-function -Wunused-variable It also removes forward declarations and moves global functions to the bottom, keeping locals at the top, in ras_tests.c. Signed-off-by: Luben Tuikov <luben.tuikov@amd.com>
* enable syncobj test depending on capabilityChunming Zhou2019-06-111-0/+8
| | | | | | | Feature is controlled by DRM_CAP_SYNCOBJ_TIMELINE drm capability. Signed-off-by: Chunming Zhou <david1.zhou@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com>
* add syncobj timeline tests v3Chunming Zhou2019-05-161-0/+290
v2: drop DRM_SYNCOBJ_CREATE_TYPE_TIMELINE, fix timeout calculation, fix some warnings v3: add export/import and cpu signal testing cases Signed-off-by: Chunming Zhou <david1.zhou@amd.com> Acked-by: Christian König <christian.koenig@amd.com> Acked-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>