From d36465d5205c5510ca4078346e47e8f3afc432e2 Mon Sep 17 00:00:00 2001 From: "liu,lei" Date: Thu, 9 Apr 2015 21:17:33 +0800 Subject: [PATCH] Correct kms_fbc_crc case Debugfs i915_fbc_status shows "FBC unsupported on this chipset" not "unsupported by this chipset" if the platform doesn't support FBC feature. That typo will cause case fail on some platforms such as byt, bsw. Signed-off-by: Lei Liu --- tests/kms_fbc_crc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/kms_fbc_crc.c b/tests/kms_fbc_crc.c index ccdec33e..1320bad3 100644 --- a/tests/kms_fbc_crc.c +++ b/tests/kms_fbc_crc.c @@ -513,7 +513,7 @@ igt_main 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") && + igt_require_f(!strstr(buf, "unsupported on this chipset") && !strstr(buf, "disabled per module param") && !strstr(buf, "disabled per chip default"), "FBC not supported/enabled\n");