This time it's mostly about CPU detection tests.
Jiri Denemark (41):
cpu_x86: Propagate vendor to guest's virCPUData
cpu_x86: Fix CPU data parser
cpu: Detect arch when parsing CPU data
cpu_x86: Rename CPUID function to eax_in
qemu: Refactor qemuMonitorJSONGetCPUx86Data
tests: Introduce qemuMonitorTestNewFromFile
tests: Fix "Reponse" typo
tests: Create simple monitor in qemuMonitorTestNewFromFile
cpu_x86: Avoid unnecessary pointers to virCPUx86Data
cpu_ppc64: Avoid unnecessary pointer to virCPUppc64Data
cpu_x86: Refactor internal KVM features
tests: Add CPU detection tests
tests: Add CPU detection test for AMD A10-5800K
tests: Add CPU detection test for Intel Atom D510
tests: Add CPU detection test for Intel Atom N450
tests: Add CPU detection test for Intel Core i5-2500
tests: Add CPU detection test for Intel Core i5-2540M
tests: Add CPU detection test for Intel Core i5-4670T
tests: Add CPU detection test for Intel Core i5-6600
tests: Add CPU detection test for Intel Core i7-2600
tests: Add CPU detection test for Intel Core i7-3520M
tests: Add CPU detection test for Intel Core i7-3740QM
tests: Add CPU detection test for Intel Core i7-3770
tests: Add CPU detection test for Intel Core i7-4600U
tests: Add CPU detection test for Intel Core i7-5600U
tests: Add CPU detection test for Intel Core2 Duo E6850
tests: Add CPU detection test for Intel Core2 Quad Q9500
tests: Add CPU detection test for AMD FX 8150
tests: Add CPU detection test for AMD Opteron 1352
tests: Add CPU detection test for AMD Opteron 2350
tests: Add CPU detection test for AMD Opteron 6234
tests: Add CPU detection test for AMD Opteron 6282 SE
tests: Add CPU detection test for Intel Pentium P6100
tests: Add CPU detection test for AMD Phenom II X4 B95
tests: Add CPU detection test for Intel Xeon 5110
tests: Add CPU detection test for Intel Xeon E3-1245
tests: Add CPU detection test for Intel Xeon E5-2630
tests: Add CPU detection test for Intel Xeon E5-2650
tests: Add CPU detection test for Intel Xeon E7-4820
tests: Add CPU detection test for Intel Xeon W3520
tests: Add CPU detection test for Intel Xeon X5460
src/cpu/cpu.c | 54 ++-
src/cpu/cpu.h | 11 +-
src/cpu/cpu_map.xml | 224 ++++-----
src/cpu/cpu_ppc64.c | 65 +--
src/cpu/cpu_ppc64_data.h | 2 +
src/cpu/cpu_x86.c | 530 ++++++++++-----------
src/cpu/cpu_x86.h | 4 +-
src/cpu/cpu_x86_data.h | 4 +-
src/libvirt_private.syms | 2 +-
src/qemu/qemu_monitor_json.c | 150 +++---
src/qemu/qemu_monitor_json.h | 4 +
tests/Makefile.am | 4 +
tests/cputest.c | 186 +++++++-
tests/cputestdata/cpu-gather.sh | 35 ++
tests/cputestdata/cpu-parse.sh | 57 +++
tests/cputestdata/x86-cpuid-A10-5800K-guest.xml | 26 +
tests/cputestdata/x86-cpuid-A10-5800K-host.xml | 26 +
tests/cputestdata/x86-cpuid-A10-5800K-json.xml | 16 +
tests/cputestdata/x86-cpuid-A10-5800K.json | 77 +++
tests/cputestdata/x86-cpuid-A10-5800K.xml | 50 ++
tests/cputestdata/x86-cpuid-Atom-D510-guest.xml | 20 +
tests/cputestdata/x86-cpuid-Atom-D510-host.xml | 21 +
tests/cputestdata/x86-cpuid-Atom-D510.xml | 27 ++
tests/cputestdata/x86-cpuid-Atom-N450-guest.xml | 21 +
tests/cputestdata/x86-cpuid-Atom-N450-host.xml | 22 +
tests/cputestdata/x86-cpuid-Atom-N450.xml | 27 ++
tests/cputestdata/x86-cpuid-Core-i5-2500-guest.xml | 24 +
tests/cputestdata/x86-cpuid-Core-i5-2500-host.xml | 24 +
tests/cputestdata/x86-cpuid-Core-i5-2500-json.xml | 9 +
tests/cputestdata/x86-cpuid-Core-i5-2500.json | 88 ++++
tests/cputestdata/x86-cpuid-Core-i5-2500.xml | 34 ++
.../cputestdata/x86-cpuid-Core-i5-2540M-guest.xml | 24 +
tests/cputestdata/x86-cpuid-Core-i5-2540M-host.xml | 24 +
tests/cputestdata/x86-cpuid-Core-i5-2540M-json.xml | 9 +
tests/cputestdata/x86-cpuid-Core-i5-2540M.json | 82 ++++
tests/cputestdata/x86-cpuid-Core-i5-2540M.xml | 34 ++
.../cputestdata/x86-cpuid-Core-i5-4670T-guest.xml | 28 ++
tests/cputestdata/x86-cpuid-Core-i5-4670T-host.xml | 28 ++
tests/cputestdata/x86-cpuid-Core-i5-4670T-json.xml | 13 +
tests/cputestdata/x86-cpuid-Core-i5-4670T.json | 77 +++
tests/cputestdata/x86-cpuid-Core-i5-4670T.xml | 34 ++
tests/cputestdata/x86-cpuid-Core-i5-6600-guest.xml | 30 ++
tests/cputestdata/x86-cpuid-Core-i5-6600-host.xml | 30 ++
tests/cputestdata/x86-cpuid-Core-i5-6600-json.xml | 14 +
tests/cputestdata/x86-cpuid-Core-i5-6600.json | 82 ++++
tests/cputestdata/x86-cpuid-Core-i5-6600.xml | 46 ++
tests/cputestdata/x86-cpuid-Core-i7-2600-guest.xml | 24 +
tests/cputestdata/x86-cpuid-Core-i7-2600-host.xml | 24 +
tests/cputestdata/x86-cpuid-Core-i7-2600-json.xml | 9 +
tests/cputestdata/x86-cpuid-Core-i7-2600.json | 77 +++
tests/cputestdata/x86-cpuid-Core-i7-2600.xml | 34 ++
.../cputestdata/x86-cpuid-Core-i7-3520M-guest.xml | 23 +
tests/cputestdata/x86-cpuid-Core-i7-3520M-host.xml | 23 +
tests/cputestdata/x86-cpuid-Core-i7-3520M.xml | 34 ++
.../cputestdata/x86-cpuid-Core-i7-3740QM-guest.xml | 23 +
.../cputestdata/x86-cpuid-Core-i7-3740QM-host.xml | 23 +
.../cputestdata/x86-cpuid-Core-i7-3740QM-json.xml | 9 +
tests/cputestdata/x86-cpuid-Core-i7-3740QM.json | 77 +++
tests/cputestdata/x86-cpuid-Core-i7-3740QM.xml | 34 ++
tests/cputestdata/x86-cpuid-Core-i7-3770-guest.xml | 23 +
tests/cputestdata/x86-cpuid-Core-i7-3770-host.xml | 23 +
tests/cputestdata/x86-cpuid-Core-i7-3770-json.xml | 8 +
tests/cputestdata/x86-cpuid-Core-i7-3770.json | 77 +++
tests/cputestdata/x86-cpuid-Core-i7-3770.xml | 34 ++
.../cputestdata/x86-cpuid-Core-i7-4600U-guest.xml | 28 ++
tests/cputestdata/x86-cpuid-Core-i7-4600U-host.xml | 28 ++
tests/cputestdata/x86-cpuid-Core-i7-4600U-json.xml | 13 +
tests/cputestdata/x86-cpuid-Core-i7-4600U.json | 82 ++++
tests/cputestdata/x86-cpuid-Core-i7-4600U.xml | 34 ++
.../cputestdata/x86-cpuid-Core-i7-5600U-guest.xml | 28 ++
tests/cputestdata/x86-cpuid-Core-i7-5600U-host.xml | 28 ++
tests/cputestdata/x86-cpuid-Core-i7-5600U-json.xml | 13 +
tests/cputestdata/x86-cpuid-Core-i7-5600U.json | 88 ++++
tests/cputestdata/x86-cpuid-Core-i7-5600U.xml | 41 ++
tests/cputestdata/x86-cpuid-Core2-E6850-guest.xml | 21 +
tests/cputestdata/x86-cpuid-Core2-E6850-host.xml | 21 +
tests/cputestdata/x86-cpuid-Core2-E6850-json.xml | 11 +
tests/cputestdata/x86-cpuid-Core2-E6850.json | 77 +++
tests/cputestdata/x86-cpuid-Core2-E6850.xml | 27 ++
tests/cputestdata/x86-cpuid-Core2-Q9500-guest.xml | 22 +
tests/cputestdata/x86-cpuid-Core2-Q9500-host.xml | 22 +
tests/cputestdata/x86-cpuid-Core2-Q9500.xml | 30 ++
tests/cputestdata/x86-cpuid-FX-8150-guest.xml | 24 +
tests/cputestdata/x86-cpuid-FX-8150-host.xml | 24 +
tests/cputestdata/x86-cpuid-FX-8150.xml | 49 ++
tests/cputestdata/x86-cpuid-Opteron-1352-guest.xml | 19 +
tests/cputestdata/x86-cpuid-Opteron-1352-host.xml | 19 +
tests/cputestdata/x86-cpuid-Opteron-1352.xml | 37 ++
tests/cputestdata/x86-cpuid-Opteron-2350-guest.xml | 19 +
tests/cputestdata/x86-cpuid-Opteron-2350-host.xml | 19 +
tests/cputestdata/x86-cpuid-Opteron-2350-json.xml | 19 +
tests/cputestdata/x86-cpuid-Opteron-2350.json | 71 +++
tests/cputestdata/x86-cpuid-Opteron-2350.xml | 37 ++
tests/cputestdata/x86-cpuid-Opteron-6234-guest.xml | 24 +
tests/cputestdata/x86-cpuid-Opteron-6234-host.xml | 24 +
tests/cputestdata/x86-cpuid-Opteron-6234-json.xml | 16 +
tests/cputestdata/x86-cpuid-Opteron-6234.json | 88 ++++
tests/cputestdata/x86-cpuid-Opteron-6234.xml | 51 ++
tests/cputestdata/x86-cpuid-Opteron-6282-guest.xml | 24 +
tests/cputestdata/x86-cpuid-Opteron-6282-host.xml | 24 +
tests/cputestdata/x86-cpuid-Opteron-6282.xml | 51 ++
.../cputestdata/x86-cpuid-Pentium-P6100-guest.xml | 23 +
tests/cputestdata/x86-cpuid-Pentium-P6100-host.xml | 23 +
tests/cputestdata/x86-cpuid-Pentium-P6100.xml | 30 ++
tests/cputestdata/x86-cpuid-Phenom-B95-guest.xml | 22 +
tests/cputestdata/x86-cpuid-Phenom-B95-host.xml | 31 ++
tests/cputestdata/x86-cpuid-Phenom-B95-json.xml | 20 +
tests/cputestdata/x86-cpuid-Phenom-B95.json | 77 +++
tests/cputestdata/x86-cpuid-Phenom-B95.xml | 38 ++
tests/cputestdata/x86-cpuid-Xeon-5110-guest.xml | 20 +
tests/cputestdata/x86-cpuid-Xeon-5110-host.xml | 20 +
tests/cputestdata/x86-cpuid-Xeon-5110.xml | 27 ++
tests/cputestdata/x86-cpuid-Xeon-E3-1245-guest.xml | 30 ++
tests/cputestdata/x86-cpuid-Xeon-E3-1245-host.xml | 30 ++
tests/cputestdata/x86-cpuid-Xeon-E3-1245-json.xml | 15 +
tests/cputestdata/x86-cpuid-Xeon-E3-1245.json | 88 ++++
tests/cputestdata/x86-cpuid-Xeon-E3-1245.xml | 46 ++
tests/cputestdata/x86-cpuid-Xeon-E5-2630-guest.xml | 29 ++
tests/cputestdata/x86-cpuid-Xeon-E5-2630-host.xml | 29 ++
tests/cputestdata/x86-cpuid-Xeon-E5-2630-json.xml | 12 +
tests/cputestdata/x86-cpuid-Xeon-E5-2630.json | 77 +++
tests/cputestdata/x86-cpuid-Xeon-E5-2630.xml | 37 ++
tests/cputestdata/x86-cpuid-Xeon-E5-2650-guest.xml | 29 ++
tests/cputestdata/x86-cpuid-Xeon-E5-2650-host.xml | 29 ++
tests/cputestdata/x86-cpuid-Xeon-E5-2650-json.xml | 12 +
tests/cputestdata/x86-cpuid-Xeon-E5-2650.json | 71 +++
tests/cputestdata/x86-cpuid-Xeon-E5-2650.xml | 37 ++
tests/cputestdata/x86-cpuid-Xeon-E7-4820-guest.xml | 28 ++
tests/cputestdata/x86-cpuid-Xeon-E7-4820-host.xml | 28 ++
tests/cputestdata/x86-cpuid-Xeon-E7-4820-json.xml | 12 +
tests/cputestdata/x86-cpuid-Xeon-E7-4820.json | 77 +++
tests/cputestdata/x86-cpuid-Xeon-E7-4820.xml | 30 ++
tests/cputestdata/x86-cpuid-Xeon-W3520-guest.xml | 23 +
tests/cputestdata/x86-cpuid-Xeon-W3520-host.xml | 23 +
tests/cputestdata/x86-cpuid-Xeon-W3520-json.xml | 10 +
tests/cputestdata/x86-cpuid-Xeon-W3520.json | 77 +++
tests/cputestdata/x86-cpuid-Xeon-W3520.xml | 30 ++
tests/cputestdata/x86-cpuid-Xeon-X5460-guest.xml | 21 +
tests/cputestdata/x86-cpuid-Xeon-X5460-host.xml | 21 +
tests/cputestdata/x86-cpuid-Xeon-X5460.xml | 27 ++
...6-host+host+host-model,models,Penryn-result.xml | 1 +
tests/qemucapabilitiestest.c | 57 +--
.../qemumonitorjson-getcpu-full.data | 6 +-
.../qemumonitorjson-getcpu-host.data | 8 +-
tests/qemumonitortestutils.c | 90 +++-
tests/qemumonitortestutils.h | 8 +-
146 files changed, 5114 insertions(+), 596 deletions(-)
create mode 100755 tests/cputestdata/cpu-gather.sh
create mode 100755 tests/cputestdata/cpu-parse.sh
create mode 100644 tests/cputestdata/x86-cpuid-A10-5800K-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-A10-5800K-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-A10-5800K-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-A10-5800K.json
create mode 100644 tests/cputestdata/x86-cpuid-A10-5800K.xml
create mode 100644 tests/cputestdata/x86-cpuid-Atom-D510-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Atom-D510-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Atom-D510.xml
create mode 100644 tests/cputestdata/x86-cpuid-Atom-N450-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Atom-N450-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Atom-N450.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-2500-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-2500-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-2500-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-2500.json
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-2500.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-2540M-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-2540M-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-2540M-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-2540M.json
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-2540M.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-4670T-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-4670T-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-4670T-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-4670T.json
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-4670T.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-6600-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-6600-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-6600-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-6600.json
create mode 100644 tests/cputestdata/x86-cpuid-Core-i5-6600.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-2600-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-2600-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-2600-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-2600.json
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-2600.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3520M-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3520M-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3520M.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3740QM-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3740QM-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3740QM-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3740QM.json
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3740QM.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3770-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3770-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3770-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3770.json
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-3770.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-4600U-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-4600U-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-4600U-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-4600U.json
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-4600U.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-5600U-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-5600U-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-5600U-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-5600U.json
create mode 100644 tests/cputestdata/x86-cpuid-Core-i7-5600U.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core2-E6850-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core2-E6850-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core2-E6850-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core2-E6850.json
create mode 100644 tests/cputestdata/x86-cpuid-Core2-E6850.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core2-Q9500-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core2-Q9500-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Core2-Q9500.xml
create mode 100644 tests/cputestdata/x86-cpuid-FX-8150-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-FX-8150-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-FX-8150.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-1352-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-1352-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-1352.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-2350-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-2350-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-2350-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-2350.json
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-2350.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-6234-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-6234-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-6234-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-6234.json
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-6234.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-6282-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-6282-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Opteron-6282.xml
create mode 100644 tests/cputestdata/x86-cpuid-Pentium-P6100-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Pentium-P6100-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Pentium-P6100.xml
create mode 100644 tests/cputestdata/x86-cpuid-Phenom-B95-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Phenom-B95-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Phenom-B95-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Phenom-B95.json
create mode 100644 tests/cputestdata/x86-cpuid-Phenom-B95.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-5110-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-5110-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-5110.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E3-1245-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E3-1245-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E3-1245-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E3-1245.json
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E3-1245.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E5-2630-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E5-2630-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E5-2630-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E5-2630.json
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E5-2630.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E5-2650-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E5-2650-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E5-2650-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E5-2650.json
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E5-2650.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E7-4820-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E7-4820-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E7-4820-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E7-4820.json
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-E7-4820.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-W3520-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-W3520-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-W3520-json.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-W3520.json
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-W3520.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-X5460-guest.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-X5460-host.xml
create mode 100644 tests/cputestdata/x86-cpuid-Xeon-X5460.xml
--
2.8.3