From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.43]) by gabe.freedesktop.org (Postfix) with ESMTPS id F178310EB4F for ; Fri, 8 Dec 2023 22:42:32 +0000 (UTC) From: Charlton Lin To: igt-dev@lists.freedesktop.org Subject: [PATCH] tests/kms_sysfs_edid_timing: increase thresholds Date: Fri, 8 Dec 2023 14:42:05 -0800 Message-Id: <20231208224205.3428717-1-charlton.lin@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Charlton Lin , Sharma@freedesktop.org, Khaled Almahallawy Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: A customer panel consistently exceeds 150ms. Additionally, the timing may be impacted by certain power states. Increase all thresholds to accommodate. Cc: Sharma, Swati2 Cc: Khaled Almahallawy Cc: Mark Yacoub Signed-off-by: Charlton Lin --- tests/kms_sysfs_edid_timing.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/kms_sysfs_edid_timing.c b/tests/kms_sysfs_edid_timing.c index 775211089f81..582133ea002e 100644 --- a/tests/kms_sysfs_edid_timing.c +++ b/tests/kms_sysfs_edid_timing.c @@ -26,9 +26,9 @@ #include #include -#define THRESHOLD_PER_CONNECTOR 150 -#define THRESHOLD_PER_CONNECTOR_MEAN 140 -#define THRESHOLD_ALL_CONNECTORS_MEAN 100 +#define THRESHOLD_PER_CONNECTOR 1500 +#define THRESHOLD_PER_CONNECTOR_MEAN 1400 +#define THRESHOLD_ALL_CONNECTORS_MEAN 1000 #define CHECK_TIMES 15 IGT_TEST_DESCRIPTION("This test checks the time it takes to reprobe each " -- 2.25.1