public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] Check all sysfs entries are readable without dmesg spam
@ 2019-10-11 12:43 Chris Wilson
  2019-10-11 12:57 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Chris Wilson @ 2019-10-11 12:43 UTC (permalink / raw)
  To: intel-gfx; +Cc: igt-dev, Tvrtko Ursulin

We already check that debugfs do not cause spam (and they tend to be
more heavyhanded and so more likely to break), but that does not excuse
not checking our sysfs directory!

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
 tests/debugfs_test.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/tests/debugfs_test.c b/tests/debugfs_test.c
index f8dd851c9..2d4753df5 100644
--- a/tests/debugfs_test.c
+++ b/tests/debugfs_test.c
@@ -56,7 +56,7 @@ static void read_and_discard_sysfs_entries(int path_fd, int indent)
 			igt_debug("%sEntering subdir %s\n", tabs, dirent->d_name);
 			read_and_discard_sysfs_entries(sub_fd, indent + 1);
 			close(sub_fd);
-		} else {
+		} else if (dirent->d_type == DT_REG) {
 			char buf[512];
 			int sub_fd;
 			ssize_t ret;
@@ -149,7 +149,7 @@ static void kms_tests(int fd, int debugfs)
 
 igt_main
 {
-	int fd = -1, debugfs;
+	int fd = -1, debugfs, sysfs;
 
 	igt_skip_on_simulation();
 
@@ -157,10 +157,13 @@ igt_main
 		fd = drm_open_driver_master(DRIVER_INTEL);
 		igt_require_gem(fd);
 		debugfs = igt_debugfs_dir(fd);
+		sysfs = igt_sysfs_open(fd);
 
 		kmstest_set_vt_graphics_mode();
 	}
 
+	igt_subtest("sysfs")
+		read_and_discard_sysfs_entries(sysfs, 0);
 	igt_subtest("read_all_entries")
 		read_and_discard_sysfs_entries(debugfs, 0);
 
@@ -168,6 +171,7 @@ igt_main
 		kms_tests(fd, debugfs);
 
 	igt_fixture {
+		close(sysfs);
 		close(debugfs);
 		close(fd);
 	}
-- 
2.23.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2019-10-11 20:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-11 12:43 [igt-dev] [PATCH i-g-t] Check all sysfs entries are readable without dmesg spam Chris Wilson
2019-10-11 12:57 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
2019-10-11 13:12 ` [igt-dev] [Intel-gfx] [PATCH i-g-t] " Tvrtko Ursulin
2019-10-11 13:31 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-10-11 20:11 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox