summaryrefslogtreecommitdiffstats
path: root/tests/qtest
diff options
context:
space:
mode:
authorMichael S. Tsirkin2020-06-09 18:26:55 +0200
committerMichael S. Tsirkin2020-07-02 11:54:58 +0200
commit0d935ffd66154a2aa3af3e49bcffd832a8bb53e5 (patch)
tree9c22a8cdd5c2f0f01202b56215a218d5b1dc8a12 /tests/qtest
parenttests: disassemble-aml.sh: generate AML in readable format (diff)
downloadqemu-0d935ffd66154a2aa3af3e49bcffd832a8bb53e5.tar.gz
qemu-0d935ffd66154a2aa3af3e49bcffd832a8bb53e5.tar.xz
qemu-0d935ffd66154a2aa3af3e49bcffd832a8bb53e5.zip
Revert "tests/migration: Reduce autoconverge initial bandwidth"
This reverts commit 6d1da867e65f ("tests/migration: Reduce autoconverge initial bandwidth") since that change makes unit tests much slower for all developers, while it's not a robust way to fix migration tests. Migration tests need to find a more robust way to discover a reasonable bandwidth without slowing things down for everyone. Fixes: 6d1da867e65f ("tests/migration: Reduce autoconverge initial bandwidth") Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com> Acked-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest')
-rw-r--r--tests/qtest/migration-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtest/migration-test.c b/tests/qtest/migration-test.c
index dc3490c9fa..21ea5ba1d2 100644
--- a/tests/qtest/migration-test.c
+++ b/tests/qtest/migration-test.c
@@ -1211,7 +1211,7 @@ static void test_migrate_auto_converge(void)
* without throttling.
*/
migrate_set_parameter_int(from, "downtime-limit", 1);
- migrate_set_parameter_int(from, "max-bandwidth", 1000000); /* ~1Mb/s */
+ migrate_set_parameter_int(from, "max-bandwidth", 100000000); /* ~100Mb/s */
/* To check remaining size after precopy */
migrate_set_capability(from, "pause-before-switchover", true);