From: Victor Toso <me@xxxxxxxxxxxxxx> Moved in qemu, see: | commit 8f8fd9edba4bd6768da2c8e2bea49ad5c16ced1a | Author: Cleber Rosa <crosa@xxxxxxxxxx> | Date: Wed Feb 6 11:29:01 2019 -0500 | | Introduce a Python module structure | | This is a simple move of Python code that wraps common QEMU | functionality, and are used by a number of different tests and | scripts. | | By treating that code as a real Python module, we can more easily: | * reuse code | * have a proper place for the module's own unittests | * apply a more consistent style | * generate documentation Signed-off-by: Victor Toso <victortoso@xxxxxxxxxx> Acked-by: Frediano Ziglio <fziglio@xxxxxxxxxx> --- tests/migrate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/migrate.py b/tests/migrate.py index 1e15ffa7..c20d5e3a 100755 --- a/tests/migrate.py +++ b/tests/migrate.py @@ -8,7 +8,7 @@ VGA mode since it will just be SeaBIOS). Dependencies: either qmp in python path or running with spice and qemu side by side: -qemu/QMP/qmp.py +qemu/python/qemu/qmp.py spice/tests/migrate.py Will create two temporary unix sockets in /tmp @@ -32,7 +32,7 @@ try: import qmp except: import sys - sys.path.append("../../qemu/QMP") + sys.path.append("../../qemu/python/qemu/") try: import qmp except: -- 2.21.0 _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/spice-devel