Re: [PATCH 00/13] kvm-unit-tests: Various improvements for x86 tests

2014-02-25 Thread Paolo Bonzini

Il 04/01/2014 18:59, Jan Kiszka ha scritto:

Highlights:
 - improved preemption timer and interrupt injection tests
   (obsoletes my two patches in vmx queue)
 - tests for IA32_APIC_BASE writes
 - test for unconditional IO exiting (VMX)
 - basic test of debug facilities (hw breakpoints etc.)

Jan Kiszka (13):
  VMX: Add test cases around interrupt injection and halting
  VMX: Extend preemption timer tests
  apic: Remove redundant enable_apic
  VMX: Fix return label in fault-triggering handlers
  lib/x86: Move exception test code into library
  x2apic: Test for invalid state transitions
  lib/x86/apic: Consolidate over MSR_IA32_APICBASE
  apic: Add test case for relocation and writing reserved bits
  VMX: Check unconditional I/O exiting
  Provide common report and report_summary services
  Ignore *.elf build outputs
  svm: Add missing build dependency
  x86: Add debug facility test case


Applied patches 3-13 for now.  Will go back to 1 and 2 when I look at 
your pending KVM patches.


Thanks, and sorry for the delay.  I was sure I had already pushed this 
(and I had been testing with them for one month).


Paolo
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 00/13] kvm-unit-tests: Various improvements for x86 tests

2014-01-22 Thread Paolo Bonzini

Il 04/01/2014 18:59, Jan Kiszka ha scritto:

Highlights:
 - improved preemption timer and interrupt injection tests
   (obsoletes my two patches in vmx queue)
 - tests for IA32_APIC_BASE writes
 - test for unconditional IO exiting (VMX)
 - basic test of debug facilities (hw breakpoints etc.)

Jan Kiszka (13):
  VMX: Add test cases around interrupt injection and halting
  VMX: Extend preemption timer tests
  apic: Remove redundant enable_apic
  VMX: Fix return label in fault-triggering handlers
  lib/x86: Move exception test code into library
  x2apic: Test for invalid state transitions
  lib/x86/apic: Consolidate over MSR_IA32_APICBASE
  apic: Add test case for relocation and writing reserved bits
  VMX: Check unconditional I/O exiting
  Provide common report and report_summary services
  Ignore *.elf build outputs
  svm: Add missing build dependency
  x86: Add debug facility test case

 .gitignore|   1 +
 Makefile  |   3 +-
 config-x86-common.mak |   4 +-
 config-x86_64.mak |   2 +-
 lib/libcflat.h|   4 +
 lib/report.c  |  36 +++
 lib/x86/apic-defs.h   |   3 +
 lib/x86/apic.c|   7 +-
 lib/x86/desc.c|  24 +
 lib/x86/desc.h|   6 ++
 x86/apic.c|  84 +---
 x86/debug.c   | 113 +
 x86/emulator.c|  16 +--
 x86/eventinj.c|  15 +--
 x86/idt_test.c|  21 +---
 x86/msr.c |  15 +--
 x86/pcid.c|  14 +--
 x86/pmu.c |  37 +++
 x86/taskswitch2.c |  15 +--
 x86/unittests.cfg |   3 +
 x86/vmx.c |  57 +++
 x86/vmx.h |   4 +-
 x86/vmx_tests.c   | 264 ++
 23 files changed, 548 insertions(+), 200 deletions(-)
 create mode 100644 lib/report.c
 create mode 100644 x86/debug.c



I'm applying patches 3-13 to the master branch, and patches 1-2 to the 
vmx branch.


Thanks!

Paolo
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 00/13] kvm-unit-tests: Various improvements for x86 tests

2014-01-04 Thread Jan Kiszka
Highlights:
 - improved preemption timer and interrupt injection tests
   (obsoletes my two patches in vmx queue)
 - tests for IA32_APIC_BASE writes
 - test for unconditional IO exiting (VMX)
 - basic test of debug facilities (hw breakpoints etc.)

Jan Kiszka (13):
  VMX: Add test cases around interrupt injection and halting
  VMX: Extend preemption timer tests
  apic: Remove redundant enable_apic
  VMX: Fix return label in fault-triggering handlers
  lib/x86: Move exception test code into library
  x2apic: Test for invalid state transitions
  lib/x86/apic: Consolidate over MSR_IA32_APICBASE
  apic: Add test case for relocation and writing reserved bits
  VMX: Check unconditional I/O exiting
  Provide common report and report_summary services
  Ignore *.elf build outputs
  svm: Add missing build dependency
  x86: Add debug facility test case

 .gitignore|   1 +
 Makefile  |   3 +-
 config-x86-common.mak |   4 +-
 config-x86_64.mak |   2 +-
 lib/libcflat.h|   4 +
 lib/report.c  |  36 +++
 lib/x86/apic-defs.h   |   3 +
 lib/x86/apic.c|   7 +-
 lib/x86/desc.c|  24 +
 lib/x86/desc.h|   6 ++
 x86/apic.c|  84 +---
 x86/debug.c   | 113 +
 x86/emulator.c|  16 +--
 x86/eventinj.c|  15 +--
 x86/idt_test.c|  21 +---
 x86/msr.c |  15 +--
 x86/pcid.c|  14 +--
 x86/pmu.c |  37 +++
 x86/taskswitch2.c |  15 +--
 x86/unittests.cfg |   3 +
 x86/vmx.c |  57 +++
 x86/vmx.h |   4 +-
 x86/vmx_tests.c   | 264 ++
 23 files changed, 548 insertions(+), 200 deletions(-)
 create mode 100644 lib/report.c
 create mode 100644 x86/debug.c

-- 
1.8.1.1.298.ge7eed54

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html