qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2 09/11] tests/qtest/migration-test: Build command line usin


From: Richard Henderson
Subject: Re: [PATCH v2 09/11] tests/qtest/migration-test: Build command line using GString API (3/4)
Date: Thu, 19 Jan 2023 11:17:11 -1000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2

On 1/19/23 04:58, Philippe Mathieu-Daudé wrote:
Part 3/4: Convert accelerator options.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
  tests/qtest/migration-test.c | 11 +++++------
  1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/tests/qtest/migration-test.c b/tests/qtest/migration-test.c
index 8377b3976a..015b774a9e 100644
--- a/tests/qtest/migration-test.c
+++ b/tests/qtest/migration-test.c
@@ -603,6 +603,9 @@ static int test_migrate_start(QTestState **from, QTestState 
**to,
      got_stop = false;
cmd_common = g_string_new("");
+    g_string_append_printf(cmd_common, "-accel kvm%s ",
+                           args->use_dirty_ring ? ",dirty-ring-size=4096" : 
"");
+    g_string_append(cmd_common, "-accel tcg ");

Maybe clearer as

  if (args->use_dirty_ring) {
      g_string_append(s, "-accel kvm,dirty-ring-size=4096 ");
  } else {
      g_string_append(s, "-accel kvm ");
  }

but what you have works, so,

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]