From patchwork Fri Oct 11 08:26:55 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: luoyifan@cmss.chinamobile.com X-Patchwork-Id: 1175004 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=209.51.188.17; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=cmss.chinamobile.com Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 46qLgY6rZDz9sP6 for ; Fri, 11 Oct 2019 19:28:09 +1100 (AEDT) Received: from localhost ([::1]:47146 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iIqHO-00084m-Gs for incoming@patchwork.ozlabs.org; Fri, 11 Oct 2019 04:28:06 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:43406) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iIqGh-000840-DA for qemu-devel@nongnu.org; Fri, 11 Oct 2019 04:27:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iIqGe-000446-Uk for qemu-devel@nongnu.org; Fri, 11 Oct 2019 04:27:22 -0400 Received: from cmccmta3.chinamobile.com ([221.176.66.81]:13196) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iIqGe-0003x6-5J for qemu-devel@nongnu.org; Fri, 11 Oct 2019 04:27:20 -0400 Received: from spf.mail.chinamobile.com (unknown[172.16.121.1]) by rmmx-syy-dmz-app11-12011 (RichMail) with SMTP id 2eeb5da03cd4570-3460f; Fri, 11 Oct 2019 16:27:00 +0800 (CST) X-RM-TRANSID: 2eeb5da03cd4570-3460f X-RM-TagInfo: emlType=0 X-RM-SPAM-FLAG: 00000000 Received: from LAPTOPBMTSOBR7 (unknown[10.42.68.12]) by rmsmtp-syy-appsvr01-12001 (RichMail) with SMTP id 2ee15da03cce38d-9225c; Fri, 11 Oct 2019 16:27:00 +0800 (CST) X-RM-TRANSID: 2ee15da03cce38d-9225c From: To: References: In-Reply-To: Subject: [Qemu-devel] [PATCH] tests/rebuild-expected-aml.sh: Modern shell scripting (use $() instead of ``) Date: Fri, 11 Oct 2019 16:26:55 +0800 Message-ID: <02f501d5800d$a4a059c0$ede10d40$@cmss.chinamobile.com> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 16.0 Thread-Index: AQJjGx4Wa+Q6/sLIx9mtUtwwo82A/qY5420Q Content-Language: zh-cn X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 221.176.66.81 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: imammedo@redhat.com, mst@redhat.com Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Various shell files contain a mix of obsolete `` and modern $(); It would be nice to convert to use $() everywhere. Signed-off-by: Yifan Luo --- tests/data/acpi/rebuild-expected-aml.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/data/acpi/rebuild-expected-aml.sh b/tests/data/acpi/rebuild-expected-aml.sh index f89d462..07c5814 100755 --- a/tests/data/acpi/rebuild-expected-aml.sh +++ b/tests/data/acpi/rebuild-expected-aml.sh @@ -29,7 +29,7 @@ for qemu in $qemu_bins; do TEST_ACPI_REBUILD_AML=y QTEST_QEMU_BINARY=$qemu tests/bios-tables-test done -eval `grep SRC_PATH= config-host.mak` +eval $(grep SRC_PATH= config-host.mak) echo '/* List of comma-separated changed AML files to ignore */' > ${SRC_PATH}/tests/bios-tables-test-allowed-diff.h