From nobody Sun Jun 28 00:11:14 2026 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 34C49C433EF for ; Thu, 17 Feb 2022 20:03:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S245643AbiBQUDp (ORCPT ); Thu, 17 Feb 2022 15:03:45 -0500 Received: from mxb-00190b01.gslb.pphosted.com ([23.128.96.19]:56442 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S242479AbiBQUDn (ORCPT ); Thu, 17 Feb 2022 15:03:43 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A13DF46672; Thu, 17 Feb 2022 12:03:27 -0800 (PST) Date: Thu, 17 Feb 2022 20:03:23 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1645128205; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=VOeAq8Wz1215EOu7MIijxGemH7CRVJkP1nxWITYpvJw=; b=b+shO7ApXEu04h/YwnVFsAMe1Ga1dztA6BnX9GPWOuLKYg9jQY0t3iSjM6SCvX3w+GBHFd 52PHFa4ScXJ6wN2+GeUesFy/Gbg+tL1Vx5gDS137P2CzOtNEEwpejcbG5YY3TxLjZDisci SrLXmebVlx5GBsDwUe9ZB7C/QFs10IsvDkyK9qlJ9wnpAi1+CgXhfMvkMEO937NpMfz3ix WAwERgOZItayvXOu2az8+iYwVBbl8BE4Ks/5Ux3CbIj18c3klAPw9ebh+Wrgi9sZqJ/TjW HqnszPqi3cDOcxlrOR2r9d5wzcAROHTVNK6gitimYrD+hunwn6I759Vw4P72bg== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1645128205; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=VOeAq8Wz1215EOu7MIijxGemH7CRVJkP1nxWITYpvJw=; b=IlCsC1PgVPeM2aYUKVuwGcLqGyrOo4fCttKj7HLAAgMOPtYgJgYmyZDMpwyMuULukDd4rV 8TITMsu203ErUCBw== From: "tip-bot2 for Muhammad Usama Anjum" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: x86/sgx] selftests/sgx: Treat CC as one argument Cc: "kernelci.org bot" , Muhammad Usama Anjum , Dave Hansen , x86@kernel.org, linux-kernel@vger.kernel.org In-Reply-To: <20220214184109.3739179-3-usama.anjum@collabora.com> References: <20220214184109.3739179-3-usama.anjum@collabora.com> MIME-Version: 1.0 Message-ID: <164512820380.16921.322060840370939582.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the x86/sgx branch of tip: Commit-ID: 6170abb21e2380477080b25145da9747ad467d3d Gitweb: https://git.kernel.org/tip/6170abb21e2380477080b25145da9747a= d467d3d Author: Muhammad Usama Anjum AuthorDate: Mon, 14 Feb 2022 23:41:09 +05:00 Committer: Dave Hansen CommitterDate: Thu, 17 Feb 2022 11:55:17 -08:00 selftests/sgx: Treat CC as one argument CC can have multiple sub-strings like "ccache gcc". For check_cc.sh, CC needs to be treated like one argument. Put double quotes around it to make CC one string and hence one argument. Fixes: 2adcba79e69d ("selftests/x86: Add a selftest for SGX") Reported-by: "kernelci.org bot" Signed-off-by: Muhammad Usama Anjum Signed-off-by: Dave Hansen Link: https://lkml.kernel.org/r/20220214184109.3739179-3-usama.anjum@collab= ora.com --- tools/testing/selftests/sgx/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/sgx/Makefile b/tools/testing/selftests= /sgx/Makefile index 2956584..75af864 100644 --- a/tools/testing/selftests/sgx/Makefile +++ b/tools/testing/selftests/sgx/Makefile @@ -4,7 +4,7 @@ include ../lib.mk =20 .PHONY: all clean =20 -CAN_BUILD_X86_64 :=3D $(shell ../x86/check_cc.sh $(CC) \ +CAN_BUILD_X86_64 :=3D $(shell ../x86/check_cc.sh "$(CC)" \ ../x86/trivial_64bit_program.c) =20 ifndef OBJCOPY