common/diamonds/sf-run-analysis-diamonds.xml.ftl
author Shabe Razvi <shaber@symbian.org>
Wed, 03 Mar 2010 19:46:30 +0000
changeset 913 eeffe74cd1b2
parent 695 1eaeee12c3d1
permissions -rw-r--r--
Add initial support for Helium7 for the platform. * Use sf.spec.sbs.options to pass args direct to Raptor. * Backwards compatibility with Helium5 maintained. * Listdir function to be provided by sbs check filter, which will be added later.

<?xml version="1.0" encoding="utf-8"?>

<diamonds-build>
  <schema>14</schema>
  
<#assign raptor_errors=0/>
<#assign raptor_warnings=0/>
<#list raptor_summary as raptor_item>
<#if raptor_item.category = "raptor_error">
  <#assign raptor_errors=raptor_errors+1 />
<#elseif raptor_item.category = "raptor_warning">
  <#assign raptor_warnings=raptor_warnings+1 />
</#if>
</#list>

  <faults>
    <total severity="Raptor Errors">${raptor_errors}</total>
    <total severity="Raptor Warnings">${raptor_warnings}</total>
    <total severity="Recipes Failed">${ant['sf.job.totalyarperrors']}</total>
  </faults>
</diamonds-build>