mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
tests/migration: Disambiguate guestperf vs. a-b
The current build structure for migration tests is confusing. There is the tests/migration directory, which contains two different guest code implementations, one for the qtests (a-b-{bootblock|kernel}.S) and another for the guestperf script (stress.c). One uses a Makefile, while the other uses meson. The next patches will add a new qtests/migration/ directory to hold qtest code which will make the situation even more confusing. Move the guest code used by qtests into a new qtests/migration/ directory and rename the old one to tests/migration-stress. Reviewed-by: Peter Xu <peterx@redhat.com> Signed-off-by: Fabiano Rosas <farosas@suse.de>
This commit is contained in:
parent
413aa2e986
commit
212c19331b
33 changed files with 11 additions and 9 deletions
|
@ -118,7 +118,7 @@ F: pc-bios/s390-ccw.img
|
|||
F: target/s390x/
|
||||
F: docs/system/target-s390x.rst
|
||||
F: docs/system/s390x/
|
||||
F: tests/migration/s390x/
|
||||
F: tests/qtest/migration/s390x/
|
||||
K: ^Subject:.*(?i)s390x?
|
||||
L: qemu-s390x@nongnu.org
|
||||
|
||||
|
@ -3423,10 +3423,11 @@ F: include/qemu/userfaultfd.h
|
|||
F: migration/
|
||||
F: scripts/vmstate-static-checker.py
|
||||
F: tests/vmstate-static-checker-data/
|
||||
F: tests/qtest/migration/
|
||||
F: tests/qtest/migration-*
|
||||
F: docs/devel/migration/
|
||||
F: qapi/migration.json
|
||||
F: tests/migration/
|
||||
F: tests/migration-stress/
|
||||
F: util/userfaultfd.c
|
||||
X: migration/rdma*
|
||||
|
||||
|
|
|
@ -84,5 +84,5 @@ endif
|
|||
subdir('unit')
|
||||
subdir('qapi-schema')
|
||||
subdir('qtest')
|
||||
subdir('migration')
|
||||
subdir('migration-stress')
|
||||
subdir('functional')
|
||||
|
|
|
@ -46,7 +46,8 @@ class BaseShell(object):
|
|||
parser.add_argument("--binary", dest="binary", default="/usr/bin/qemu-system-x86_64")
|
||||
parser.add_argument("--dst-host", dest="dst_host", default="localhost")
|
||||
parser.add_argument("--kernel", dest="kernel", default="/boot/vmlinuz-%s" % platform.release())
|
||||
parser.add_argument("--initrd", dest="initrd", default="tests/migration/initrd-stress.img")
|
||||
parser.add_argument("--initrd", dest="initrd",
|
||||
default="tests/migration-stress/initrd-stress.img")
|
||||
parser.add_argument("--transport", dest="transport", default="unix")
|
||||
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
#include "ppc-util.h"
|
||||
|
||||
#include "migration-helpers.h"
|
||||
#include "tests/migration/migration-test.h"
|
||||
#include "migration/migration-test.h"
|
||||
#ifdef CONFIG_GNUTLS
|
||||
# include "tests/unit/crypto-tls-psk-helpers.h"
|
||||
# ifdef CONFIG_TASN1
|
||||
|
@ -138,10 +138,10 @@ static char *bootpath;
|
|||
/* The boot file modifies memory area in [start_address, end_address)
|
||||
* repeatedly. It outputs a 'B' at a fixed rate while it's still running.
|
||||
*/
|
||||
#include "tests/migration/i386/a-b-bootblock.h"
|
||||
#include "tests/migration/aarch64/a-b-kernel.h"
|
||||
#include "tests/migration/ppc64/a-b-kernel.h"
|
||||
#include "tests/migration/s390x/a-b-bios.h"
|
||||
#include "migration/i386/a-b-bootblock.h"
|
||||
#include "migration/aarch64/a-b-kernel.h"
|
||||
#include "migration/ppc64/a-b-kernel.h"
|
||||
#include "migration/s390x/a-b-bios.h"
|
||||
|
||||
static void bootfile_delete(void)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue