diff options
author | duerpei <duep.fnst@fujitsu.com> | 2022-09-03 15:48:31 +0800 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2022-12-08 05:59:37 +0000 |
commit | 39b04de14116e2a681dc6bad474dc76620d2de57 (patch) | |
tree | 634a47628bfbe355e658aa27e73972adfdf73750 /template | |
parent | 85e3c12681faca0519ca995a82feeb7709397ca2 (diff) |
agl-test-framework: add "XPASS" and "XFAIL" states
Adjust the test framework , add "XPASS" and "XFAIL" states for the
result of test case, and delete useless code by the way.
Bug-AGL: SPEC-4345
Signed-off-by: duerpei <duep.fnst@fujitsu.com>
Change-Id: I5763dc27caef956fb6632fcb59d9f95d671f4766
Diffstat (limited to 'template')
-rw-r--r-- | template/summary_result_tpl.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/summary_result_tpl.html b/template/summary_result_tpl.html index 6b8f9fe..6b173cf 100644 --- a/template/summary_result_tpl.html +++ b/template/summary_result_tpl.html @@ -6,7 +6,7 @@ <body> <h1> {{ data.test_name }} test report </h1> <li> Status : {{ data.test_status }} </li> - <li> Total : {{ data.collected }} Pass : {{ data.passed }} Fail : {{ data.failed }} Skip : {{ data.skipped }} </li> + <li> Total : {{ data.collected }} Pass : {{ data.passed }} Xpass : {{ data.xpassed }} Fail : {{ data.failed }} Xfail : {{ data.xfailed }} Skip : {{ data.skipped }} </li> <li> Details : </li> <table border="1" cellspacing="2"> {{ data.case_status_html }} |