[igt-dev] [Intel-gfx] [PATCH i-g-t] tests/i915/module_load: fix resize-bar on DG1
Das, Nirmoy
nirmoy.das at linux.intel.com
Mon Oct 10 11:14:33 UTC 2022
On 10/10/2022 12:48 PM, Matthew Auld wrote:
> DG1, as expected only has a fixed sized bar, so attempting to force the
> BAR size should fail. Update the test to account for such devices, and
> perform a skip, instead of failing.
>
> Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/6458
> Signed-off-by: Matthew Auld <matthew.auld at intel.com>
> Cc: Nirmoy Das <nirmoy.das at intel.com>
Tested-by: Nirmoy Das <nirmoy.das at intel.com>
Reviewed-by: Nirmoy Das <nirmoy.das at intel.com>
> ---
> tests/i915/i915_module_load.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/i915/i915_module_load.c b/tests/i915/i915_module_load.c
> index 4c72157c..6d74de58 100644
> --- a/tests/i915/i915_module_load.c
> +++ b/tests/i915/i915_module_load.c
> @@ -422,7 +422,7 @@ igt_main
>
> /* Test for lmem_bar_size modparam support */
> lmem_bar_size = driver_load_with_lmem_bar_size(MIN_BAR_SIZE, true);
> - igt_assert_eq(lmem_bar_size, MIN_BAR_SIZE);
> + igt_skip_on_f(lmem_bar_size != MIN_BAR_SIZE, "Device lacks PCI resizeable BAR support.\n");
>
> lmem_bar_size = driver_load_with_lmem_bar_size(0, false);
>
More information about the igt-dev
mailing list