[igt-dev] [PATCH i-g-t 1/2] tests/drm_import_export: Added test description for test case

Kamil Konieczny kamil.konieczny at linux.intel.com
Wed Mar 23 13:26:05 UTC 2022


Hi Priyanka,

Dnia 2022-03-21 at 19:39:49 +0530, priyanka.dandamudi at intel.com napisał(a):
> From: Priyanka Dandamudi <priyanka.dandamudi at intel.com>
> 
> Added test description to all the test and subtests.
> 
> Signed-off-by: Priyanka Dandamudi <priyanka.dandamudi at intel.com>
> Cc: Kamil Konieczny <kamil.konieczny at linux.intel.com>
> Cc: Melkaveri Arjun <arjun.melkaveri at intel.com>
> ---
>  tests/drm_import_export.c | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/tests/drm_import_export.c b/tests/drm_import_export.c
> index 65cac60d..e21ac8ae 100644
> --- a/tests/drm_import_export.c
> +++ b/tests/drm_import_export.c
> @@ -43,6 +43,7 @@
>  #include "i915/gem.h"
>  
>  #define DURATION 10
> +IGT_TEST_DESCRIPTION("Basic check to verify the behaviour of libdrm bo for prime/flink");
>  
>  int fd;
>  drm_intel_bufmgr *bufmgr;
> @@ -250,16 +251,22 @@ igt_main {
>  		drm_intel_bufmgr_gem_enable_reuse(bufmgr);
>  	}
>  
> +	igt_describe("Verify whether the behaviour of libdrm"
> +                     " is consistent for flink or not.");
-- ^^
Please use tabs then few spaces before string.

>  	igt_subtest("import-close-race-flink") {
>  		use_flink = true;
>  		test_import_close_race();
>  	}
>  
> + 	igt_describe("Verify whether the behaviour of libdrm"
-- ^
Remove space before tab.

> +                     " is consistent for prime or not.");

Same as above, change to tabs then few spaces.

>  	igt_subtest("import-close-race-prime") {
>  		use_flink = false;
>  		test_import_close_race();
>  	}
>  
> +	igt_describe("Multithreaded test to validate the (lack of) locking in the flink"
----------------------------------------------------------------------------- ^
You already splitted this string, so split it here to keep under
80 columns.

> +    		     "code in libdrm-intel.");
-- ^
Remove spaces before tabs.
You already used "libdrm" above, so s/libdrm-intel/libdrm/
Please also put space between words, here it get "flinkcode"

>  	igt_subtest("flink") {
>  		use_flink = true;
>  
> @@ -274,6 +281,8 @@ igt_main {
>  		pthread_join(test_thread_id4, NULL);
>  	}
>  
> +	igt_describe("Multithreaded test to validate the (lack of) locking in the prime"

Split string to keep it under 80 columns.

> +                     "code in libdrm-intel.");
-- ^
Change spaces to tabs, then few spaces.
s/libdrm-intel/libdrm/

Please use --describe to see for missed spaces between words.

>  	igt_subtest("prime") {
>  		use_flink = false;
>  
> -- 
> 2.25.1
> 
Regards,
Kamil


More information about the igt-dev mailing list