|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [XTF PATCH] xtf-runner: use xl create -Fc directly
Now that xl create -c is fixed in xen-unstable, there is no need to keep
the hack to get guest console output anymore.
Use xl create -Fc directly, then wait for the xl process to exit. Print
any error as it occurs.
Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx>
---
xtf-runner | 36 ++++++++++++++++--------------------
1 file changed, 16 insertions(+), 20 deletions(-)
diff --git a/xtf-runner b/xtf-runner
index 7c38db8..eeabc03 100755
--- a/xtf-runner
+++ b/xtf-runner
@@ -132,6 +132,7 @@ def list_tests(args):
print name
+create_list = []
def run_test(test):
""" Run a specific test """
@@ -140,27 +141,17 @@ def run_test(test):
cfg = path.join("tests", name, test + ".cfg")
- cmd = ['xl', 'create', '-p', cfg]
-
- print "Executing '%s'" % (" ".join(cmd), )
- rc = subproc_call(cmd)
- if rc:
- raise RunnerError("Failed to create VM")
-
- cmd = ['xl', 'console', test]
+ cmd = ['xl', 'create', '-Fc', cfg]
print "Executing '%s'" % (" ".join(cmd), )
- console = Popen(cmd, stdout = PIPE)
+ guest = Popen(cmd, stdout = PIPE, stderr = PIPE)
+ create_list.append(guest)
- cmd = ['xl', 'unpause', test]
- print "Executing '%s'" % (" ".join(cmd), )
- rc = subproc_call(cmd)
- if rc:
- raise RunnerError("Failed to unpause VM")
+ # stdout is console output, stderr is xl output
+ stdout, stderr = guest.communicate()
- stdout, _ = console.communicate()
-
- if console.returncode:
- raise RunnerError("Failed to obtain VM console")
+ if guest.returncode:
+ print stderr
+ raise RunnerError("Failed to communicate with guest")
lines = stdout.splitlines()
@@ -327,9 +318,14 @@ def main():
opts, args = parser.parse_args()
if opts.list_tests:
- return list_tests(args)
+ ret = list_tests(args)
else:
- return run_tests(args)
+ ret = run_tests(args)
+
+ for child in create_list:
+ child.wait()
+
+ return ret
if __name__ == "__main__":
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
https://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |