./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 <[email protected]> --- CC: Ian Jackson <[email protected]> CC: Wei Liu <[email protected]> --- 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 [email protected] https://lists.xen.org/xen-devel
