From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44846) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aaX6t-0002FD-6b for qemu-devel@nongnu.org; Mon, 29 Feb 2016 18:20:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aaX6s-0006N4-97 for qemu-devel@nongnu.org; Mon, 29 Feb 2016 18:20:15 -0500 From: Max Reitz Date: Tue, 1 Mar 2016 00:19:31 +0100 Message-Id: <1456787973-19348-15-git-send-email-mreitz@redhat.com> In-Reply-To: <1456787973-19348-1-git-send-email-mreitz@redhat.com> References: <1456787973-19348-1-git-send-email-mreitz@redhat.com> Subject: [Qemu-devel] [PATCH v2 14/16] iotests.py: Allow concurrent qemu instances List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-block@nongnu.org Cc: Kevin Wolf , Markus Armbruster , qemu-devel@nongnu.org, Max Reitz , Paolo Bonzini , Luiz Capitulino By adding an optional suffix to the files used for communication with a VM, we can launch multiple VM instances concurrently. Signed-off-by: Max Reitz --- tests/qemu-iotests/iotests.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py index dd8805a..fed5301 100644 --- a/tests/qemu-iotests/iotests.py +++ b/tests/qemu-iotests/iotests.py @@ -130,10 +130,13 @@ def event_match(event, match=None): class VM(object): '''A QEMU VM''' - def __init__(self): - self._monitor_path = os.path.join(test_dir, 'qemu-mon.%d' % os.getpid()) - self._qemu_log_path = os.path.join(test_dir, 'qemu-log.%d' % os.getpid()) - self._qtest_path = os.path.join(test_dir, 'qemu-qtest.%d' % os.getpid()) + def __init__(self, path_suffix=''): + self._monitor_path = os.path.join(test_dir, 'qemu-mon%s.%d' % + (path_suffix, os.getpid())) + self._qemu_log_path = os.path.join(test_dir, 'qemu-log%s.%d' % + (path_suffix, os.getpid())) + self._qtest_path = os.path.join(test_dir, 'qemu-qtest%s.%d' % + (path_suffix, os.getpid())) self._args = qemu_args + ['-chardev', 'socket,id=mon,path=' + self._monitor_path, '-mon', 'chardev=mon,mode=control', -- 2.7.1