From ce809d46203ca064d3312ddcdd7a973b6b61c73b Mon Sep 17 00:00:00 2001 From: itycodes Date: Mon, 4 Nov 2024 08:30:51 +0100 Subject: [PATCH] Make the uapi test names consistent The uapi tests should all be prefixed with `test_i915_uapi_`. --- tests/tests_uapi.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_uapi.rs b/tests/tests_uapi.rs index 7c199d9..7ae7bba 100644 --- a/tests/tests_uapi.rs +++ b/tests/tests_uapi.rs @@ -40,7 +40,7 @@ fn test_i915_uapi_native_engine_info() { } #[test] -fn test_i915_find_fd() { +fn test_i915_uapi_find_fd() { let fd = i915::find_fd().expect("Failed to find i915 fd"); let drm_version = uapi::get_drm_version(fd.as_raw_fd()).expect("Failed to get drm version"); assert_eq!(drm_version.name.to_str().unwrap(), "i915");