[igt-dev] [i-g-t V6 05/10] tests/kms_vrr: Fix the logic to calculate expected rate
Bhanuprakash Modem
bhanuprakash.modem at intel.com
Thu Dec 7 06:48:55 UTC 2023
Fix the condition check to measure the expected refresh rate.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem at intel.com>
---
tests/kms_vrr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index 4540d8b4b..db82cd008 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -329,7 +329,7 @@ flip_and_measure(data_t *data, igt_output_t *output, enum pipe pipe,
* difference between 144Hz and 143Hz which should give this
* enough accuracy for most use cases.
*/
- if ((rate_ns < vtest_ns.min) && (rate_ns >= vtest_ns.max))
+ if ((rate_ns <= vtest_ns.min) && (rate_ns >= vtest_ns.max))
diff_ns = rate_ns;
else
diff_ns = vtest_ns.max;
--
2.40.0
More information about the igt-dev
mailing list