From mboxrd@z Thu Jan 1 00:00:00 1970 From: Imre Deak Subject: [PATCH 05/22] test_flip: fix checking for delayed event reception Date: Tue, 16 Oct 2012 17:34:39 +0300 Message-ID: <1350398096-3649-6-git-send-email-imre.deak@intel.com> References: <1350398096-3649-1-git-send-email-imre.deak@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mga14.intel.com (mga14.intel.com [143.182.124.37]) by gabe.freedesktop.org (Postfix) with ESMTP id BBEE79F378 for ; Tue, 16 Oct 2012 07:35:15 -0700 (PDT) In-Reply-To: <1350398096-3649-1-git-send-email-imre.deak@intel.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org To: intel-gfx@lists.freedesktop.org List-Id: intel-gfx@lists.freedesktop.org The intent for the time limit seems to be 2ms, but the current condition will result in a 1s limit and makes the check against tv_usec redundant. Fix the condition to check for a 2ms limit. Signed-off-by: Imre Deak --- tests/flip_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/flip_test.c b/tests/flip_test.c index 5e39db6..ed8c12b 100644 --- a/tests/flip_test.c +++ b/tests/flip_test.c @@ -183,7 +183,7 @@ static void page_flip_handler(int fd, unsigned int frame, unsigned int sec, timersub(&pageflip_ts, &now, &diff); - if (diff.tv_sec > 0 || (diff.tv_sec > 0 && diff.tv_usec > 2000)) { + if (diff.tv_sec > 0 || (diff.tv_sec == 0 && diff.tv_usec > 2000)) { fprintf(stderr, "pageflip timestamp delayed for too long: %is, %iusec\n", (int) diff.tv_sec, (int) diff.tv_usec); exit(5); -- 1.7.9.5