summaryrefslogtreecommitdiff
path: root/tests/v3d
diff options
context:
space:
mode:
authorMaíra Canal <mcanal@igalia.com>2022-11-29 15:40:35 -0300
committerKamil Konieczny <kamil.konieczny@linux.intel.com>2022-12-01 12:57:18 +0100
commit03bb945433aeba08b092141d11761a9d11d46b87 (patch)
tree3dac918fd09da5ef986fd4c3babe6bc085bdfa37 /tests/v3d
parentc3b74f32131c6df2cb98da1c3e9388cef0ccb8cc (diff)
tests/v3d: Add igt_describe() to all V3D subtests
igt_describe() helps improve the documentation of the tests by explaining the general idea behind the test. So, add test descriptions to all V3D subtests using igt_describe(). Reviewed-by: Melissa Wen <mwen@igalia.com> Signed-off-by: Maíra Canal <mcanal@igalia.com>
Diffstat (limited to 'tests/v3d')
-rw-r--r--tests/v3d/v3d_get_bo_offset.c5
-rw-r--r--tests/v3d/v3d_get_param.c5
-rw-r--r--tests/v3d/v3d_mmap.c3
3 files changed, 13 insertions, 0 deletions
diff --git a/tests/v3d/v3d_get_bo_offset.c b/tests/v3d/v3d_get_bo_offset.c
index 976a28b85..f0318016a 100644
--- a/tests/v3d/v3d_get_bo_offset.c
+++ b/tests/v3d/v3d_get_bo_offset.c
@@ -24,6 +24,8 @@
#include "igt.h"
#include "igt_v3d.h"
+IGT_TEST_DESCRIPTION("Tests for the V3D's get BO offset IOCTL");
+
igt_main
{
int fd;
@@ -31,6 +33,8 @@ igt_main
igt_fixture
fd = drm_open_driver(DRIVER_V3D);
+ igt_describe("Make sure the offset returned by the creation of the BO is "
+ "the same as the offset returned by the IOCTL");
igt_subtest("create-get-offsets") {
struct v3d_bo *bos[2] = {
igt_v3d_create_bo(fd, 4096),
@@ -54,6 +58,7 @@ igt_main
igt_v3d_free_bo(fd, bos[1]);
}
+ igt_describe("Make sure an offset cannot be returned for an invalid BO handle.");
igt_subtest("get-bad-handle") {
struct drm_v3d_get_bo_offset get = {
.handle = 0xd0d0d0d0,
diff --git a/tests/v3d/v3d_get_param.c b/tests/v3d/v3d_get_param.c
index 816a3c7d5..0ca330eb5 100644
--- a/tests/v3d/v3d_get_param.c
+++ b/tests/v3d/v3d_get_param.c
@@ -24,6 +24,8 @@
#include "igt.h"
#include "igt_v3d.h"
+IGT_TEST_DESCRIPTION("Tests for the V3D's get params IOCTL");
+
igt_main
{
int fd;
@@ -31,6 +33,7 @@ igt_main
igt_fixture
fd = drm_open_driver(DRIVER_V3D);
+ igt_describe("Sanity check for getting existent params.");
igt_subtest("base-params") {
enum drm_v3d_param last_base_param =
DRM_V3D_PARAM_V3D_CORE0_IDENT2;
@@ -48,6 +51,7 @@ igt_main
0x443356 /* "V3D" */);
}
+ igt_describe("Make sure that getting params fails for non-existent params identifiers.");
igt_subtest("get-bad-param") {
struct drm_v3d_get_param get = {
.param = 0xd0d0d0d0,
@@ -55,6 +59,7 @@ igt_main
do_ioctl_err(fd, DRM_IOCTL_V3D_GET_PARAM, &get, EINVAL);
}
+ igt_describe("Make sure that getting params fails for non-zero pad.");
igt_subtest("get-bad-flags") {
struct drm_v3d_get_param get = {
.param = DRM_V3D_PARAM_V3D_HUB_IDENT1,
diff --git a/tests/v3d/v3d_mmap.c b/tests/v3d/v3d_mmap.c
index ad4416078..5e2385bd9 100644
--- a/tests/v3d/v3d_mmap.c
+++ b/tests/v3d/v3d_mmap.c
@@ -24,6 +24,8 @@
#include "igt.h"
#include "igt_v3d.h"
+IGT_TEST_DESCRIPTION("Tests for the V3D's mmap IOCTL");
+
igt_main
{
int fd;
@@ -31,6 +33,7 @@ igt_main
igt_fixture
fd = drm_open_driver(DRIVER_V3D);
+ igt_describe("Make sure an invalid BO cannot be mapped.");
igt_subtest("mmap-bad-handle") {
struct drm_v3d_mmap_bo get = {
.handle = 0xd0d0d0d0,