From patchwork Sun Jul 31 15:20:18 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 12933120 X-Patchwork-Delegate: kieran@bingham.xyz Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 50D90C19F2B for ; Sun, 31 Jul 2022 15:20:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233156AbiGaPUg (ORCPT ); Sun, 31 Jul 2022 11:20:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60086 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236805AbiGaPUe (ORCPT ); Sun, 31 Jul 2022 11:20:34 -0400 Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EF1D3260D for ; Sun, 31 Jul 2022 08:20:33 -0700 (PDT) Received: from pendragon.ideasonboard.com (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 0BE6556D; Sun, 31 Jul 2022 17:20:31 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1659280832; bh=nHMSxXUMO60p2RGhdvdsIsFyJwSAZsVSA7ctIlCt+lY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Ezb/NOJx8D98pKknccl1Bb9Gzo8RvM1baT2dTE7B+NqhBXNATFfjw0w420BZ3ihgr qxCfGmyjrVBlRwBxrr3mzjb45k4b1QEIwPj3ynxECpbeY218znZXoFAqEsTQwefkVz asarRY6gfMAJxyzEJEDVMWk8BAH9+W4c3rhECRvQ= From: Laurent Pinchart To: linux-renesas-soc@vger.kernel.org Cc: Kieran Bingham Subject: [kms-test] [PATCH 1/7] tests: brxalloc: Fix test start log message Date: Sun, 31 Jul 2022 18:20:18 +0300 Message-Id: <20220731152024.24090-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220731152024.24090-1-laurent.pinchart@ideasonboard.com> References: <20220731152024.24090-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org The test start log message incorrectly prints the same connector twice instead of the source and destination connectors. Fix it. Signed-off-by: Laurent Pinchart --- tests/kms-test-brxalloc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/kms-test-brxalloc.py b/tests/kms-test-brxalloc.py index 7170ee6c7708..c80d2e33c846 100755 --- a/tests/kms-test-brxalloc.py +++ b/tests/kms-test-brxalloc.py @@ -62,7 +62,7 @@ class BRxAllocTest(kmstest.KMSTest): return self.start(f'Moving {len(planes)} planes from {outputs[0].connector.fullname} ' - f'to {outputs[0].connector.fullname}') + f'to {outputs[1].connector.fullname}') # Set the initial mode for both outputs and wait 5s for the monitors to # wake up.