All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v2] lib/igt_debugfs: Add IGT_CRC_SOURCE environmental variable
@ 2022-06-09 17:05 Jessica Zhang
  2022-06-09 17:35 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Jessica Zhang @ 2022-06-09 17:05 UTC (permalink / raw)
  To: igt-dev; +Cc: quic_aravindh, petri.latvala

Adds support for the IGT_CRC_SOURCE environmental variable to make it
easier for drivers to run tests using custom CRC sources.

Example usage:
	`IGT_CRC_SOURCE=intf ./kms_pipe_crc_basic`

If the IGT_CRC_SOURCE isn't set, use the original source that was passed
in as a parameter to pipe_crc_new().

Signed-off-by: Jessica Zhang <quic_jesszhan@quicinc.com>
---
 lib/igt_debugfs.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c
index 7e7ccf22c455..f9404acc3942 100644
--- a/lib/igt_debugfs.c
+++ b/lib/igt_debugfs.c
@@ -719,9 +719,15 @@ pipe_crc_new(int fd, enum pipe pipe, const char *source, int flags)
 	igt_pipe_crc_t *pipe_crc;
 	char buf[128];
 	int debugfs;
+	char *env_source;
 
 	igt_assert(source);
 
+	env_source = getenv("IGT_CRC_SOURCE");
+
+	if (!env_source)
+		env_source = source;
+
 	debugfs = igt_debugfs_dir(fd);
 	igt_assert(debugfs != -1);
 
@@ -736,7 +742,7 @@ pipe_crc_new(int fd, enum pipe pipe, const char *source, int flags)
 	pipe_crc->fd = fd;
 	pipe_crc->dir = debugfs;
 	pipe_crc->pipe = pipe;
-	pipe_crc->source = strdup(source);
+	pipe_crc->source = strdup(env_source);
 	igt_assert(pipe_crc->source);
 	pipe_crc->flags = flags;
 
-- 
2.31.0

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2022-06-14 20:45 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-09 17:05 [igt-dev] [PATCH i-g-t v2] lib/igt_debugfs: Add IGT_CRC_SOURCE environmental variable Jessica Zhang
2022-06-09 17:35 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
2022-06-09 23:21 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2022-06-10  0:44 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_debugfs: Add IGT_CRC_SOURCE environmental variable (rev2) Patchwork
2022-06-10 22:56 ` [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_debugfs: Add IGT_CRC_SOURCE environmental variable Patchwork
2022-06-11  0:19 ` [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_debugfs: Add IGT_CRC_SOURCE environmental variable (rev2) Patchwork
2022-06-14 13:42 ` [igt-dev] [PATCH i-g-t v2] lib/igt_debugfs: Add IGT_CRC_SOURCE environmental variable Petri Latvala
2022-06-14 20:45   ` Jessica Zhang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.