mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 17:36:11 +00:00
tests/kms_fbc_crc: fix fread() return value assertion
Use 1 as the element size to check the number of bytes returned is greater than 0, rather than checking the number of elements returned. This fixes a regression from commit 47f6b13 (igt.cocci: check the return values of various functions). Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89833 Signed-off-by: Thomas Wood <thomas.wood@intel.com>
This commit is contained in:
parent
074d8b440e
commit
564dfd45a9
@ -510,7 +510,7 @@ igt_main
|
||||
|
||||
status = igt_debugfs_fopen("i915_fbc_status", "r");
|
||||
igt_require_f(status, "No i915_fbc_status found\n");
|
||||
igt_assert_eq(fread(buf, sizeof(buf), 1, status), sizeof(buf));
|
||||
igt_assert_lt(0, fread(buf, 1, sizeof(buf), status));
|
||||
fclose(status);
|
||||
buf[sizeof(buf) - 1] = '\0';
|
||||
igt_require_f(!strstr(buf, "unsupported by this chipset") &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user