From mboxrd@z Thu Jan 1 00:00:00 1970 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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 692A6C4332F for ; Thu, 13 Oct 2022 21:22:55 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id DD40684EE6; Thu, 13 Oct 2022 23:22:52 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (1024-bit key; unprotected) header.d=suse.de header.i=@suse.de header.b="hOE4+2jS"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="jwKWKttF"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 91DD184E73; Thu, 13 Oct 2022 23:22:51 +0200 (CEST) Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 514F184DF1 for ; Thu, 13 Oct 2022 23:22:49 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=msuchanek@suse.de Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out1.suse.de (Postfix) with ESMTP id 1B08721C28; Thu, 13 Oct 2022 21:22:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1665696169; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=NbGA/E2Hm+vV4uph8mGZuNLdNa+Hc/z2l/OBnk1+cog=; b=hOE4+2jSyGpmnm5cJpU6TGHYdb0XsW5PFUzEa98Ts7GHo2P9cn2DbNMrJjJAFneDAXTYtW aoF+IMPlnjgYZVIT5hd1IQYT1H7XxP00FIvG9MHwunOR5aVT0Njp4eVOoXx1GpaztudKXX 3G81pPo3hzJBR0l3T+DP8CXwuscF+rA= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1665696169; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=NbGA/E2Hm+vV4uph8mGZuNLdNa+Hc/z2l/OBnk1+cog=; b=jwKWKttFkAPw/IRU9MJSDUOfkFEQc34usYJ5db6JoxHVwL32fiytwoB+R/R9bFsdb6df3a N5o/FNG8qj6CHkAA== Received: from naga.suse.cz (unknown [10.100.224.114]) by relay2.suse.de (Postfix) with ESMTP id E6FE62C141; Thu, 13 Oct 2022 21:22:48 +0000 (UTC) From: Michal Suchanek To: u-boot@lists.denx.de Cc: Michal Suchanek , Simon Glass Subject: [PATCH] test: Fix typo in test name Date: Thu, 13 Oct 2022 23:22:46 +0200 Message-Id: <20221013212246.21204-1-msuchanek@suse.de> X-Mailer: git-send-email 2.37.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean For other sandbox tests the printed test name corresponds to the configuration except for this one. Signed-off-by: Michal Suchanek --- test/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run b/test/run index 810b47e08d..5b17204c73 100755 --- a/test/run +++ b/test/run @@ -53,7 +53,7 @@ run_test "sandbox_spl" ./test/py/test.py --bd sandbox_spl --build ${para} \ # Run the sane tests with sandbox_noinst (i.e. without OF_PLATDATA_INST) echo "${prompt}" -run_test "sandbox_spl" ./test/py/test.py --bd sandbox_noinst --build ${para} \ +run_test "sandbox_noinst" ./test/py/test.py --bd sandbox_noinst --build ${para} \ -k 'test_ofplatdata or test_handoff or test_spl' if [ -z "$tools_only" ]; then -- 2.37.3