./xtf-runner wants to distinguish between a clean and unclean exits of the
test.  OSSTest doesn't care, so map unclean exit to failure.

Signed-off-by: Andrew Cooper <andrew.coop...@citrix.com>
---
CC: Ian Jackson <ian.jack...@eu.citrix.com>
CC: Wei Liu <wei.l...@citrix.com>
---
 ts-xtf-run | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ts-xtf-run b/ts-xtf-run
index d405bfb..c95ec5f 100755
--- a/ts-xtf-run
+++ b/ts-xtf-run
@@ -39,6 +39,7 @@ sub xtf_result_to_osstest_result ($) {
     return "skip" if $xret == 3; # XTF SKIP
     return "fail" if $xret == 4; # XTF ERROR
     return "fail" if $xret == 5; # XTF FAILURE
+    return "fail" if $xret == 6; # XTF CRASH
     die "xtf runner gave unexpected result $xret";
 }
 
-- 
2.1.4


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

Reply via email to