]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
iotests.py: tiny refactor: move system imports up
authorVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Mon, 12 Mar 2018 15:21:24 +0000 (18:21 +0300)
committerEric Blake <eblake@redhat.com>
Tue, 13 Mar 2018 20:44:09 +0000 (15:44 -0500)
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20180312152126.286890-7-vsementsov@virtuozzo.com>
Signed-off-by: Eric Blake <eblake@redhat.com>
tests/qemu-iotests/iotests.py

index 1bcc9ca57dca74ea068d6252a6d52004af854e11..c1302a2f9b1da79bf5ba6cae4a780c78840fe1e3 100644 (file)
@@ -23,13 +23,14 @@ import subprocess
 import string
 import unittest
 import sys
-sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'scripts'))
-import qtest
 import struct
 import json
 import signal
 import logging
 
+sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'scripts'))
+import qtest
+
 
 # This will not work if arguments contain spaces but is necessary if we
 # want to support the override options that ./check supports.