]> git.proxmox.com Git - mirror_qemu.git/commit - qtest.c
qtest: add test framework
authorAnthony Liguori <aliguori@us.ibm.com>
Wed, 28 Mar 2012 13:42:02 +0000 (15:42 +0200)
committerAnthony Liguori <aliguori@us.ibm.com>
Fri, 30 Mar 2012 13:14:11 +0000 (08:14 -0500)
commitc7f0f3b1c826901358a0656f80a5fabb88f73c61
treec1ff5a6ed93543dd2580e11397d21ee190e3fd23
parentb93b63f574ccb451e82f81c6da7c39b3ecb4f24c
qtest: add test framework

The idea behind qtest is pretty simple.  Instead of executing a CPU via TCG or
KVM, rely on an external process to send events to the device model that the CPU
would normally generate.

qtest presents itself as an accelerator.  In addition, a new option is added to
establish a qtest server (-qtest) that takes a character device.  This is what
allows the external process to send CPU events to the device model.

qtest uses a simple line based protocol to send the events.  Documentation of
that protocol is in qtest.c.

I considered reusing the monitor for this job.  Adding interrupts would be a bit
difficult.  In addition, logging would also be difficult.

qtest has extensive logging support.  All protocol commands are logged with
time stamps using a new command line option (-qtest-log).  Logging is important
since ultimately, this is a feature for debugging.

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Makefile.objs
cpu-exec.c
cpus.c
qemu-options.hx
qtest.c [new file with mode: 0644]
qtest.h [new file with mode: 0644]
scripts/qtest [new file with mode: 0755]
vl.c