diff options
author | Fam Zheng <famz@redhat.com> | 2013-09-26 19:57:34 +0800 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2013-09-26 16:04:24 +0200 |
commit | 212774c5a5036b327dc10a0dd3e5fe194b509a18 (patch) | |
tree | 8283048490dc056a273ba37e53a17b557c0dacf2 | |
parent | d055a1fec37ec84fd3e87d48a0e766a9ff8369c4 (diff) | |
download | qemu-212774c5a5036b327dc10a0dd3e5fe194b509a18.tar.gz qemu-212774c5a5036b327dc10a0dd3e5fe194b509a18.tar.bz2 qemu-212774c5a5036b327dc10a0dd3e5fe194b509a18.zip |
qemu-iotests: fix qmp.py search path
QMP/qmp.py is renamed to scripts/qmp/qmp.py, fix the search path in iotests.py.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r-- | tests/qemu-iotests/iotests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py index 87b4a3a880..376d6e8ffe 100644 --- a/tests/qemu-iotests/iotests.py +++ b/tests/qemu-iotests/iotests.py @@ -21,7 +21,7 @@ import re import subprocess import string import unittest -import sys; sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'QMP')) +import sys; sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'scripts', 'qmp')) import qmp import struct |