From patchwork Wed Dec 6 21:05:22 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 19298 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 8E342C322E for ; Wed, 6 Dec 2023 21:05:25 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 413C362B49; Wed, 6 Dec 2023 22:05:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1701896725; bh=EOmeZpeHB9ocqUdjJgaEADkR6bNa+3qZSf87p/L7Lh4=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=flOcvtPJsSlK4apIZzJbmcw52Rjx/SBizS+7sWPBfLz9tbWPvXtbay1jeu6FnJd9+ 7A5erj/jFrolfxFzo0XpPcOMiLwMl3l/LS3mpMGg3bPT7ZSijqJXbvWvkIXciZK6I6 tIkgZwwaumy4feAEr9w+6fcw5+y/OtmOCqXsmOV3ng5YIK3OU+QQmFWDyggsGtLsXM DIfm3cMXPO5SspNY4qVxetTfV6zsBuwKL4U2s0Uzv/0tT0sFrLCda3U2j/S1sgDof+ 6L3CwlzmIidDYqCeDKY5378BEntQFD8uBxGZ90XF0N6qoqi4cI9tiDUFcLuKEMd4dJ J8oCohmgzfHJA== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 9EF2162B33 for ; Wed, 6 Dec 2023 22:05:23 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="CrLU2Tz7"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (213-243-189-158.bb.dnainternet.fi [213.243.189.158]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9DA45E45 for ; Wed, 6 Dec 2023 22:04:42 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1701896682; bh=EOmeZpeHB9ocqUdjJgaEADkR6bNa+3qZSf87p/L7Lh4=; h=From:To:Subject:Date:In-Reply-To:References:From; b=CrLU2Tz7B/GjHQKQPr4pwYq971VLtYEMivJlR1ZxLdH6pVPWntndtBWyf7vgYL4Zn axAasGRK/EbI3pjBjWSPD47CvGMlmuPfiTb1ce6AInuhC4suh9ZvvYp4xogv4+QErd 0w72g7my8ZluEWFL0vo+nbp7TbqxQT+Yazr0SfRs= To: libcamera-devel@lists.libcamera.org Date: Wed, 6 Dec 2023 23:05:22 +0200 Message-ID: <20231206210524.20974-5-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20231206210524.20974-1-laurent.pinchart@ideasonboard.com> References: <20231206210524.20974-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 4/6] test: log: log_process: Increase process exit timeout X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" When running tests on slower devices, 200ms is too low to wait for the process to exit. Increase the timeout to 2s. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham Reviewed-by: Umang Jain --- test/log/log_process.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/log/log_process.cpp b/test/log/log_process.cpp index fb6635cc99aa..1926c56039b6 100644 --- a/test/log/log_process.cpp +++ b/test/log/log_process.cpp @@ -81,7 +81,7 @@ protected: return TestFail; } - timeout.start(200ms); + timeout.start(2s); while (timeout.isRunning()) dispatcher->processEvents();