From: Mauro Carvalho Chehab <mauro.chehab@linux.intel.com>
To: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: Re: [igt-dev] [i-g-t V3 03/82] tests/color: Move color helpers to lib
Date: Tue, 23 May 2023 08:51:42 +0200 [thread overview]
Message-ID: <20230523085142.43e6fa92@maurocar-mobl2> (raw)
In-Reply-To: <20230523063243.669540-4-bhanuprakash.modem@intel.com>
On Tue, 23 May 2023 12:01:24 +0530
Bhanuprakash Modem <bhanuprakash.modem@intel.com> wrote:
> The correct place for helpers is lib as the tests directory is
> supposed to have test files, also having the helpers in tests
> dir will break the compilation of testplan. Hence move all
> helpers to library.
>
> Expectation is to have an executable binary for each .c file
> the "tests" dir.
>
> V2: - Drop special case compilation method
>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
LGTM.
Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org>
> ---
> .../igt_color_helper.c | 2 +-
> .../igt_color_helper.h | 0
> lib/meson.build | 1 +
> tests/chamelium/kms_chamelium_color.c | 2 +-
> tests/kms_color.c | 2 +-
> tests/meson.build | 20 ++-----------------
> 6 files changed, 6 insertions(+), 21 deletions(-)
> rename tests/kms_color_helper.c => lib/igt_color_helper.c (99%)
> rename tests/kms_color_helper.h => lib/igt_color_helper.h (100%)
>
> diff --git a/tests/kms_color_helper.c b/lib/igt_color_helper.c
> similarity index 99%
> rename from tests/kms_color_helper.c
> rename to lib/igt_color_helper.c
> index b01c38ef6..87fd096c1 100644
> --- a/tests/kms_color_helper.c
> +++ b/lib/igt_color_helper.c
> @@ -22,7 +22,7 @@
> *
> */
>
> -#include "kms_color_helper.h"
> +#include "igt_color_helper.h"
>
> bool pipe_output_combo_valid(data_t *data, enum pipe pipe)
> {
> diff --git a/tests/kms_color_helper.h b/lib/igt_color_helper.h
> similarity index 100%
> rename from tests/kms_color_helper.h
> rename to lib/igt_color_helper.h
> diff --git a/lib/meson.build b/lib/meson.build
> index 75e52580b..1cc859f17 100644
> --- a/lib/meson.build
> +++ b/lib/meson.build
> @@ -20,6 +20,7 @@ lib_sources = [
> 'igt_chamelium_helper.c',
> 'igt_collection.c',
> 'igt_color_encoding.c',
> + 'igt_color_helper.c',
> 'igt_crc.c',
> 'igt_debugfs.c',
> 'igt_device.c',
> diff --git a/tests/chamelium/kms_chamelium_color.c b/tests/chamelium/kms_chamelium_color.c
> index 26239a6b8..bbb929b64 100644
> --- a/tests/chamelium/kms_chamelium_color.c
> +++ b/tests/chamelium/kms_chamelium_color.c
> @@ -22,7 +22,7 @@
> *
> */
>
> -#include "kms_color_helper.h"
> +#include "igt_color_helper.h"
>
> IGT_TEST_DESCRIPTION("Test Color Features at Pipe level using Chamelium to verify instead of CRC");
>
> diff --git a/tests/kms_color.c b/tests/kms_color.c
> index fdc7120c7..cd2d38329 100644
> --- a/tests/kms_color.c
> +++ b/tests/kms_color.c
> @@ -22,7 +22,7 @@
> *
> */
>
> -#include "kms_color_helper.h"
> +#include "igt_color_helper.h"
>
> IGT_TEST_DESCRIPTION("Test Color Features at Pipe level");
>
> diff --git a/tests/meson.build b/tests/meson.build
> index 48e9164f8..1c33e5605 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -21,6 +21,7 @@ test_progs = [
> 'kms_atomic_interruptible',
> 'kms_atomic_transition',
> 'kms_bw',
> + 'kms_color',
> 'kms_concurrent',
> 'kms_content_protection',
> 'kms_cursor_crc',
> @@ -281,6 +282,7 @@ msm_progs = [
>
> chamelium_progs = [
> 'kms_chamelium_audio',
> + 'kms_chamelium_color',
> 'kms_chamelium_edid',
> 'kms_chamelium_frames',
> 'kms_chamelium_hpd',
> @@ -471,24 +473,6 @@ executable('testdisplay', ['testdisplay.c', 'testdisplay_hotplug.c'],
> install : true)
> test_list += 'testdisplay'
>
> -test_executables += executable('kms_color',
> - [ 'kms_color.c', 'kms_color_helper.c' ],
> - dependencies : test_deps,
> - install_dir : libexecdir,
> - install_rpath : libexecdir_rpathdir,
> - install : true)
> -test_list += 'kms_color'
> -
> -if chamelium.found()
> - test_executables += executable('kms_chamelium_color',
> - [ 'chamelium/kms_chamelium_color.c', 'kms_color_helper.c' ],
> - dependencies : test_deps + [ chamelium ],
> - install_dir : libexecdir,
> - install_rpath : libexecdir_rpathdir,
> - install : true)
> - test_list += 'kms_chamelium_color'
> -endif
> -
> test_executables += executable('sw_sync', 'sw_sync.c',
> dependencies : test_deps + [ libatomic ],
> install_dir : libexecdir,
next prev parent reply other threads:[~2023-05-23 6:53 UTC|newest]
Thread overview: 94+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-23 6:31 [igt-dev] [i-g-t V3 00/82] Document KMS tests Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 01/82] tests/chamelium: Move chamelium helpers to lib Bhanuprakash Modem
2023-05-23 6:50 ` Mauro Carvalho Chehab
2023-05-23 16:04 ` Kamil Konieczny
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 02/82] tests/dsc: Move dsc " Bhanuprakash Modem
2023-05-23 6:51 ` Mauro Carvalho Chehab
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 03/82] tests/color: Move color " Bhanuprakash Modem
2023-05-23 6:51 ` Mauro Carvalho Chehab [this message]
2023-05-23 16:00 ` Kamil Konieczny
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 04/82] testplan/kms: Include testdisplay to kms testplan config Bhanuprakash Modem
2023-05-23 6:45 ` Mauro Carvalho Chehab
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 05/82] testplan/kms: Add support to differentiate b/w drivers Bhanuprakash Modem
2023-05-23 6:45 ` Mauro Carvalho Chehab
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 06/82] tests/chamelium/kms_chamelium_audio: Document each subtest for testplan Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 07/82] tests/chamelium/kms_chamelium_color: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 08/82] tests/chamelium/kms_chamelium_edid: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 09/82] tests/chamelium/kms_chamelium_frames: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 10/82] tests/chamelium/kms_chamelium_hpd: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 11/82] tests/i915/kms_big_fb: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 12/82] tests/i915/kms_big_joiner: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 13/82] tests/i915/kms_busy: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 14/82] tests/i915/kms_ccs: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 15/82] tests/i915/kms_cdclk: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 16/82] tests/i915/kms_draw_crc: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 17/82] tests/i915/kms_dsc: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 18/82] tests/i915/kms_fb_coherency: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 19/82] tests/i915/kms_fbcon_fbt: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 20/82] tests/i915/kms_fence_pin_leak: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 21/82] tests/i915/kms_flip_scaled_crc: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 22/82] tests/i915/kms_flip_tiling: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 23/82] tests/i915/kms_frontbuffer_tracking: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 24/82] tests/i915/kms_legacy_colorkey: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 25/82] tests/i915/kms_mmap_write_crc: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 26/82] tests/i915/kms_pipe_b_c_ivb: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 27/82] tests/i915/kms_psr: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 28/82] tests/i915/kms_psr2_sf: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 29/82] tests/i915/kms_psr2_su: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 30/82] tests/i915/kms_psr_stress_test: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 31/82] tests/i915/kms_pwrite_crc: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 32/82] tests/kms_3d: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 33/82] tests/kms_addfb_basic: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 34/82] tests/kms_async_flips: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 35/82] tests/kms_atomic: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 36/82] tests/kms_atomic_interruptible: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 37/82] tests/kms_atomic_transition: " Bhanuprakash Modem
2023-05-23 6:31 ` [igt-dev] [i-g-t V3 38/82] tests/kms_bw: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 39/82] tests/kms_color: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 40/82] tests/kms_concurrent: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 41/82] tests/kms_content_protection: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 42/82] tests/kms_cursor_crc: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 43/82] tests/kms_cursor_edge_walk: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 44/82] tests/kms_cursor_legacy: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 45/82] tests/kms_display_modes: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 46/82] tests/kms_dither: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 47/82] tests/kms_dp_aux_dev: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 48/82] tests/kms_dp_tiled_display: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 49/82] tests/kms_flip: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 50/82] tests/kms_flip_event_leak: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 51/82] tests/kms_force_connector_basic: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 52/82] tests/kms_getfb: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 53/82] tests/kms_hdmi_inject: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 54/82] tests/kms_hdr: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 55/82] tests/kms_invalid_mode: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 56/82] tests/kms_lease: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 57/82] tests/kms_multipipe_modeset: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 58/82] tests/kms_panel_fitting: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 59/82] tests/kms_pipe_crc_basic: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 60/82] tests/kms_plane: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 61/82] tests/kms_plane_alpha_blend: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 62/82] tests/kms_plane_cursor: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 63/82] tests/kms_plane_lowres: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 64/82] tests/kms_plane_multiple: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 65/82] tests/kms_plane_scaling: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 66/82] tests/kms_prime: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 67/82] tests/kms_prop_blob: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 68/82] tests/kms_properties: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 69/82] tests/kms_rmfb: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 70/82] tests/kms_rotation_crc: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 71/82] tests/kms_scaling_modes: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 72/82] tests/kms_selftest: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 73/82] tests/kms_sequence: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 74/82] tests/kms_setmode: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 75/82] tests/kms_sysfs_edid_timing: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 76/82] tests/kms_tv_load_detect: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 77/82] tests/kms_universal_plane: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 78/82] tests/kms_vblank: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 79/82] tests/kms_vrr: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 80/82] tests/kms_writeback: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 81/82] tests/testdisplay: " Bhanuprakash Modem
2023-05-23 6:32 ` [igt-dev] [i-g-t V3 82/82] testplan/kms: Make documentation is mandatory for all kms subtests Bhanuprakash Modem
2023-05-23 6:44 ` Mauro Carvalho Chehab
2023-05-23 7:08 ` [igt-dev] ✗ GitLab.Pipeline: warning for Document KMS tests (rev10) Patchwork
2023-05-23 7:27 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-05-23 9:30 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230523085142.43e6fa92@maurocar-mobl2 \
--to=mauro.chehab@linux.intel.com \
--cc=bhanuprakash.modem@intel.com \
--cc=igt-dev@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox