Merge "Fix the display of not_executed test"
diff --git a/common/host-side/tradefed/res/report/compatibility_result.xsl b/common/host-side/tradefed/res/report/compatibility_result.xsl
index 156f3c6..b8c1245 100644
--- a/common/host-side/tradefed/res/report/compatibility_result.xsl
+++ b/common/host-side/tradefed/res/report/compatibility_result.xsl
@@ -150,10 +150,10 @@
<xsl:value-of select="count(TestCase/Test[@result = 'fail'])"/>
</td>
<td>
- <xsl:value-of select="count(TestCase/Test[@result = 'not_executed'])"/>
+ <xsl:value-of select="@not_executed"/>
</td>
<td>
- <xsl:value-of select="count(TestCase/Test)"/>
+ <xsl:value-of select="count(TestCase/Test) + @not_executed"/>
</td>
</tr>
</xsl:for-each> <!-- end Module -->