[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 02/17] tests: Rename test-x86-cpuid.c to test-x86-topo.c
|
From: |
Zhao Liu |
|
Subject: |
[PATCH v2 02/17] tests: Rename test-x86-cpuid.c to test-x86-topo.c |
|
Date: |
Mon, 29 May 2023 20:30:46 +0800 |
From: Zhao Liu <zhao1.liu@intel.com>
In fact, this unit tests APIC ID other than CPUID.
Rename to test-x86-topo.c to make its name more in line with its
actual content.
Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
---
Changes since v1:
* Rename test-x86-apicid.c to test-x86-topo.c. (Yanan)
---
MAINTAINERS | 2 +-
tests/unit/meson.build | 4 ++--
tests/unit/{test-x86-cpuid.c => test-x86-topo.c} | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
rename tests/unit/{test-x86-cpuid.c => test-x86-topo.c} (99%)
diff --git a/MAINTAINERS b/MAINTAINERS
index 4b025a7b63e2..d608afbe0e2f 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1713,7 +1713,7 @@ F: include/hw/southbridge/ich9.h
F: include/hw/southbridge/piix.h
F: hw/isa/apm.c
F: include/hw/isa/apm.h
-F: tests/unit/test-x86-cpuid.c
+F: tests/unit/test-x86-topo.c
F: tests/qtest/test-x86-cpuid-compat.c
PC Chipset
diff --git a/tests/unit/meson.build b/tests/unit/meson.build
index 3a6314269bb4..22fcb2247e53 100644
--- a/tests/unit/meson.build
+++ b/tests/unit/meson.build
@@ -21,8 +21,8 @@ tests = {
'test-opts-visitor': [testqapi],
'test-visitor-serialization': [testqapi],
'test-bitmap': [],
- # all code tested by test-x86-cpuid is inside topology.h
- 'test-x86-cpuid': [],
+ # all code tested by test-x86-topo is inside topology.h
+ 'test-x86-topo': [],
'test-cutils': [],
'test-div128': [],
'test-shift128': [],
diff --git a/tests/unit/test-x86-cpuid.c b/tests/unit/test-x86-topo.c
similarity index 99%
rename from tests/unit/test-x86-cpuid.c
rename to tests/unit/test-x86-topo.c
index bfabc0403a1a..2b104f86d7c2 100644
--- a/tests/unit/test-x86-cpuid.c
+++ b/tests/unit/test-x86-topo.c
@@ -1,5 +1,5 @@
/*
- * Test code for x86 CPUID and Topology functions
+ * Test code for x86 APIC ID and Topology functions
*
* Copyright (c) 2012 Red Hat Inc.
*
--
2.34.1
- [PATCH v2 00/17] Support smp.clusters for x86, Zhao Liu, 2023/05/29
- [PATCH v2 01/17] i386: Fix comment style in topology.h, Zhao Liu, 2023/05/29
- [PATCH v2 02/17] tests: Rename test-x86-cpuid.c to test-x86-topo.c,
Zhao Liu <=
- [PATCH v2 06/17] i386/cpu: Consolidate the use of topo_info in cpu_x86_cpuid(), Zhao Liu, 2023/05/29
- [PATCH v2 07/17] i386: Introduce module-level cpu topology to CPUX86State, Zhao Liu, 2023/05/29
- [PATCH v2 09/17] i386: Support module_id in X86CPUTopoIDs, Zhao Liu, 2023/05/29
- [PATCH v2 05/17] i386/cpu: Use APIC ID offset to encode cache topo in CPUID[4], Zhao Liu, 2023/05/29
- [PATCH v2 10/17] i386/cpu: Introduce cluster-id to X86CPU, Zhao Liu, 2023/05/29
- [PATCH v2 11/17] tests: Add test case of APIC ID for module level parsing, Zhao Liu, 2023/05/29
- [PATCH v2 04/17] i386/cpu: Fix i/d-cache topology to core level for Intel CPU, Zhao Liu, 2023/05/29
- [PATCH v2 03/17] softmmu: Fix CPUSTATE.nr_cores' calculation, Zhao Liu, 2023/05/29
- [PATCH v2 08/17] i386: Support modules_per_die in X86CPUTopoInfo, Zhao Liu, 2023/05/29
- [PATCH v2 12/17] hw/i386/pc: Support smp.clusters for x86 PC machine, Zhao Liu, 2023/05/29