[igt-dev] [PATCH i-g-t v2 2/2] tests/kms_addfb_basic: add vendor-specific errno assertions
Petri Latvala
petri.latvala at intel.com
Tue Nov 17 07:31:29 UTC 2020
On Mon, Nov 16, 2020 at 05:18:44PM -0500, Jeremy Cline wrote:
> This adjusts the check on failed calls to DRM_IOCTL_MODE_ADDFB2 in
> various scenarios. According to the kernel's
> drm_mode_config_funcs.fb_create documentation, a negative return code is
> all that is required to signal failure, and different drivers return
> different errors in these scenarios.
>
> Particularly, Nouveau returns -ERANGE rather than -EINVAL in scenarios
> where the buffer is too small for the proposed configuration.
>
> In situations where Nouveau and Intel return codes diverge, this splits
> up the test into a generic test asserting a non-zero error code,
> followed by some vendor-specific assertions about its exact value.
>
> Signed-off-by: Jeremy Cline <jcline at redhat.com>
> ---
> Changes since v1:
> - Added vendor-specific assertions for exact error numbers
> - Added igt_info statements to the generic test cases
> - Made use of do_ioctl_err() macro when possible
>
> tests/kms_addfb_basic.c | 64 +++++++++++++++++++++++++++++++++++++----
> 1 file changed, 58 insertions(+), 6 deletions(-)
I was thinking more on the lines of
igt_subtest("bad-pitch") {
igt_assert_f(drmIoctl(fd, y, z) == -1, "this should have failed");
if (is_i915_device(fd))
igt_assert_eq(errno, EINVAL);
else if (is_nouveau_device(fd))
igt_assert_eq(errno, ERANGE);
else {
igt_info("Unknown vendor, can't check which error value this should be, but it was %d", errno);
}
}
That method unfortunately prevents the use of do_ioctl_err. Hmm.
shouldbe = get_proper_error_code_for_device(fd);
if (shouldbe != 0) {
do_ioctl_err(fd, x, y, z, shouldbe);
} else {
igt_assert(drmIoctl(fd, x, y, z) == -1);
igt_info("Unknown vendor, can't check which error value this should be but it was %d", errno);
}
Anyway, don't split these to vendor-specific subtests. Subtests should
be split based on the operation tested, as a very loose thumb rule.
--
Petri Latvala
>
> diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
> index 0ec583fe..9b936584 100644
> --- a/tests/kms_addfb_basic.c
> +++ b/tests/kms_addfb_basic.c
> @@ -278,11 +278,35 @@ static void pitch_tests(int fd)
> f.fb_id = 0;
> }
>
> + /* Generic invalid pitch tests; error numbers are driver-dependent */
> for (i = 0; i < ARRAY_SIZE(bad_pitches); i++) {
> - igt_subtest_f("bad-pitch-%i", bad_pitches[i]) {
> + igt_subtest_f("generic-bad-pitch-%i", bad_pitches[i]) {
> f.pitches[0] = bad_pitches[i];
> igt_assert(drmIoctl(fd, DRM_IOCTL_MODE_ADDFB2, &f) == -1 &&
> - errno == EINVAL);
> + errno != 0);
> + igt_info("invalid pitch %i resulted in errno %i\n",
> + bad_pitches[i], errno);
> + }
> + }
> +
> + /* Intel returns EINVAL in all invalid pitch scenarios */
> + for (i = 0; i < ARRAY_SIZE(bad_pitches); i++) {
> + igt_subtest_f("intel-bad-pitch-%i", bad_pitches[i]) {
> + igt_require_intel(fd);
> + f.pitches[0] = bad_pitches[i];
> + do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> + }
> + }
> +
> + /* Nouveau returns ERANGE for pitches that are too big */
> + for (i = 0; i < ARRAY_SIZE(bad_pitches); i++) {
> + igt_subtest_f("nouveau-bad-pitch-%i", bad_pitches[i]) {
> + igt_require_nouveau(fd);
> + f.pitches[0] = bad_pitches[i];
> + if (bad_pitches[i] > 4 * 1024)
> + do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, ERANGE);
> + else
> + do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> }
> }
>
> @@ -427,17 +451,45 @@ static void size_tests(int fd)
> f_8.height++;
> igt_subtest("too-high") {
> igt_assert(drmIoctl(fd, DRM_IOCTL_MODE_ADDFB2, &f) == -1 &&
> - errno == EINVAL);
> + errno != 0);
> + igt_info("driver returned errno %i for framebuffer f\n", errno);
> igt_assert(drmIoctl(fd, DRM_IOCTL_MODE_ADDFB2, &f_16) == -1 &&
> - errno == EINVAL);
> + errno != 0);
> + igt_info("driver returned errno %i for framebuffer f_16\n", errno);
> igt_assert(drmIoctl(fd, DRM_IOCTL_MODE_ADDFB2, &f_8) == -1 &&
> - errno == EINVAL);
> + errno != 0);
> + igt_info("driver returned errno %i for framebuffer f_8\n", errno);
> + }
> +
> + igt_subtest("intel-too-high") {
> + igt_require_intel(fd);
> + do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> + do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f_16, EINVAL);
> + do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f_8, EINVAL);
> + }
> +
> + igt_subtest("nouveau-too-high") {
> + igt_require_nouveau(fd);
> + do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, ERANGE);
> + do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f_16, ERANGE);
> + do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f_8, ERANGE);
> }
>
> f.handles[0] = gem_bo_small;
> igt_subtest("bo-too-small") {
> igt_assert(drmIoctl(fd, DRM_IOCTL_MODE_ADDFB2, &f) == -1 &&
> - errno == EINVAL);
> + errno != 0);
> + igt_info("driver returned errno %i\n", errno);
> + }
> +
> + igt_subtest("intel-bo-too-small") {
> + igt_require_intel(fd);
> + do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
> + }
> +
> + igt_subtest("nouveau-bo-too-small") {
> + igt_require_nouveau(fd);
> + do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, ERANGE);
> }
>
> /* Just to check that the parameters would work. */
> --
> 2.28.0
>
More information about the igt-dev
mailing list