aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/cmd/brew-test-bot.xml.erb
blob: a835740f374c53c82dae68254b2693f269c8e6ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
  <% tests.each do |test| %>
  <testsuite name="brew-test-bot.<%= test.name %>" tests="<%= test.steps.count %>">
    <% test.steps.each do |step| %>
    <testcase name="<%= step.command %>" status="<%= step.status %>" time="<%= step.time %>">
      <% if step.has_output? %>
      <system-out><![CDATA[<%= step.output %>]]></system-out>
      <% end %>
      <% if step.failed? %>
      <failure />
      <% end %>
    </testcase>
    <% end %>
  </testsuite>
  <% end %>
</testsuites>