From: Zhao Liu Date: Fri, 8 Mar 2024 16:01:39 +0000 (+0800) Subject: tests/unit/test-smp-parse: Drop the unsupported "dies=1" case X-Git-Tag: v9.0.0-rc0~25^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a4f9386071c4a04fe581ac3750e2d4d61c683a6c;p=thirdparty%2Fqemu.git tests/unit/test-smp-parse: Drop the unsupported "dies=1" case Unsupported "parameter=1" SMP configurations is marked as deprecated, so drop the related test case. Signed-off-by: Zhao Liu Reviewed-by: Thomas Huth Message-ID: <20240308160148.3130837-5-zhao1.liu@linux.intel.com> Signed-off-by: Philippe Mathieu-Daudé --- diff --git a/tests/unit/test-smp-parse.c b/tests/unit/test-smp-parse.c index 24972666a74..1874bea0860 100644 --- a/tests/unit/test-smp-parse.c +++ b/tests/unit/test-smp-parse.c @@ -607,11 +607,6 @@ static void test_generic_valid(const void *opaque) unsupported_params_init(mc, &data); smp_parse_test(ms, &data, true); - - /* Unsupported parameters can be provided with their values as 1 */ - data.config.has_dies = true; - data.config.dies = 1; - smp_parse_test(ms, &data, true); } object_unref(obj);