From nobody Fri Apr 4 07:32:43 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 0B6721A83EF for ; Thu, 27 Feb 2025 16:01:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740672063; cv=none; b=CPECF/f3LQMOXM+a3GY+zcf/UHfv+KBEUi1I0en0Rhx1JztkSnreUmVu6CbD1Oxfesh6JRAN9d0bayIgqSE/15Z/lKBjYCUY27gvj/7AlA/ItaFZysG32IDHQTd/RaDALmgiq+VxJayVxN9MZZlp8AGFbbJtJCryTWfMqUdIetU= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740672063; c=relaxed/simple; bh=MSQW5xDS0P3/8o9sLNqQf0SlrA9+pAo9/1dnEczuABQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=WjdMm2JZLUhaPyGQV00NU4NbbBL6mexBEChNKc5IpWafvFuNZEHADxirfb63/OchrKqMe9EMcix9J/Ik/LV/5PE8+qCj/7HAMfDFa7awSGCAckCf8EiNM+rgcgtbjY/xDHhzba8LzUg5YISlyQVzzDLfEb9fesYwMbrJzQJX9gk= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=bYKcLnKM; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="bYKcLnKM" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 824A2C4CEDD; Thu, 27 Feb 2025 16:01:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1740672062; bh=MSQW5xDS0P3/8o9sLNqQf0SlrA9+pAo9/1dnEczuABQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bYKcLnKMvqJVtpScjQtuyrDmMzQnDFVfjrjp4xWVVZlP0BW+owjpqnLj5+44RVs8a tYK7lMvoJwhGes+Pu+chqC13Oo3BbGUBR1UIeRPteQ3PJU8VycPk6hMwNRVZYHtHsb bWtt1o2c9BpfdYVGgzJhulGqu3M8HfL1lrki2348LWFjonGhU9e9n0ZirKObL2FmDe Bv9Ex9ar+TNJtNbFRE9im/jKNjG0hjrWiBa3dKJ9qVnB3VbS2eQWt02+qrYI/xPSeo x/0ebwGYh+AyfErf8azRmSjHV2nEqWeycDw0Qyv/f2n+9RHprvHzoq2TmMpKLp8Yc2 QFf3zgFTuOOOQ== Received: from mchehab by mail.kernel.org with local (Exim 4.98) (envelope-from ) id 1tngJo-000000023ap-3DRt; Thu, 27 Feb 2025 17:01:00 +0100 From: Mauro Carvalho Chehab To: Igor Mammedov , "Michael S . Tsirkin" Cc: Jonathan Cameron , Shiju Jose , qemu-arm@nongnu.org, qemu-devel@nongnu.org, Mauro Carvalho Chehab , Ani Sinha , linux-kernel@vger.kernel.org Subject: [PATCH v6 02/19] tests/qtest/bios-tables-test: extend to also check HEST table Date: Thu, 27 Feb 2025 17:00:40 +0100 Message-ID: X-Mailer: git-send-email 2.48.1 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab Content-Type: text/plain; charset="utf-8" Currently, aarch64 can generate a HEST table when loaded with -machine ras=3Don. Add support for it. Signed-off-by: Mauro Carvalho Chehab Reviewed-by: Igor Mammedov Reviewed-by: Jonathan Cameron --- tests/qtest/bios-tables-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c index 0a333ec43536..8d41601cc9e9 100644 --- a/tests/qtest/bios-tables-test.c +++ b/tests/qtest/bios-tables-test.c @@ -2122,7 +2122,7 @@ static void test_acpi_aarch64_virt_tcg(void) =20 data.smbios_cpu_max_speed =3D 2900; data.smbios_cpu_curr_speed =3D 2700; - test_acpi_one("-cpu cortex-a57 " + test_acpi_one("-cpu cortex-a57 -machine ras=3Don " "-smbios type=3D4,max-speed=3D2900,current-speed=3D2700"= , &data); free_test_data(&data); } --=20 2.48.1