[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 07/13] tests: Consolidate accelerators declaration
|
From: |
Juan Quintela |
|
Subject: |
[Qemu-devel] [PULL 07/13] tests: Consolidate accelerators declaration |
|
Date: |
Mon, 29 Jan 2018 13:09:26 +0100 |
Signed-off-by: Juan Quintela <address@hidden>
Reviewed-by: Dr. David Alan Gilbert <address@hidden>
Reviewed-by: Peter Xu <address@hidden>
---
tests/migration-test.c | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/tests/migration-test.c b/tests/migration-test.c
index 0428d450df..3732682a29 100644
--- a/tests/migration-test.c
+++ b/tests/migration-test.c
@@ -422,27 +422,29 @@ static void test_migrate_start(QTestState **from,
QTestState **to,
gchar *cmd_src, *cmd_dst;
char *bootpath = g_strdup_printf("%s/bootsect", tmpfs);
const char *arch = qtest_get_arch();
+ const char *accel = "kvm:tcg";
got_stop = false;
if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
init_bootfile_x86(bootpath);
- cmd_src = g_strdup_printf("-machine accel=kvm:tcg -m 150M"
+ cmd_src = g_strdup_printf("-machine accel=%s -m 150M"
" -name pcsource,debug-threads=on"
" -serial file:%s/src_serial"
" -drive file=%s,format=raw",
- tmpfs, bootpath);
- cmd_dst = g_strdup_printf("-machine accel=kvm:tcg -m 150M"
+ accel, tmpfs, bootpath);
+ cmd_dst = g_strdup_printf("-machine accel=%s -m 150M"
" -name pcdest,debug-threads=on"
" -serial file:%s/dest_serial"
" -drive file=%s,format=raw"
" -incoming %s",
- tmpfs, bootpath, uri);
+ accel, tmpfs, bootpath, uri);
} else if (strcmp(arch, "ppc64") == 0) {
- const char *accel;
/* On ppc64, the test only works with kvm-hv, but not with kvm-pr */
- accel = access("/sys/module/kvm_hv", F_OK) ? "tcg" : "kvm:tcg";
+ if (access("/sys/module/kvm_hv", F_OK)) {
+ accel = "tcg";
+ }
init_bootfile_ppc(bootpath);
cmd_src = g_strdup_printf("-machine accel=%s -m 256M"
" -name pcsource,debug-threads=on"
--
2.14.3
- [Qemu-devel] [PULL 00/13] Migration PULL request, Juan Quintela, 2018/01/29
- [Qemu-devel] [PULL 01/13] migration: Allow migrate_fd_connect to take an Error *, Juan Quintela, 2018/01/29
- [Qemu-devel] [PULL 02/13] migration: Route errors down through migration_channel_connect, Juan Quintela, 2018/01/29
- [Qemu-devel] [PULL 03/13] migration/savevm.c: set MAX_VM_CMD_PACKAGED_SIZE to 1ul << 32, Juan Quintela, 2018/01/29
- [Qemu-devel] [PULL 04/13] migration: use s->threshold_size inside migration_update_counters, Juan Quintela, 2018/01/29
- [Qemu-devel] [PULL 05/13] migration: Drop current address parameter from save_zero_page(), Juan Quintela, 2018/01/29
- [Qemu-devel] [PULL 07/13] tests: Consolidate accelerators declaration,
Juan Quintela <=
- [Qemu-devel] [PULL 06/13] tests: Remove deprecated migration tests commands, Juan Quintela, 2018/01/29
- [Qemu-devel] [PULL 09/13] tests: Add deprecated commands migration test, Juan Quintela, 2018/01/29
- [Qemu-devel] [PULL 08/13] tests: Use consistent names for migration, Juan Quintela, 2018/01/29
- [Qemu-devel] [PULL 12/13] tests: Create migrate-start-postcopy command, Juan Quintela, 2018/01/29
- [Qemu-devel] [PULL 10/13] tests: Add migration precopy test, Juan Quintela, 2018/01/29
- [Qemu-devel] [PULL 11/13] tests: Add migration xbzrle test, Juan Quintela, 2018/01/29
- [Qemu-devel] [PULL 13/13] tests: Adjust sleeps for migration test, Juan Quintela, 2018/01/29
- Re: [Qemu-devel] [PULL 00/13] Migration PULL request, Peter Maydell, 2018/01/29