Skip to content

Commit

Permalink
Merge pull request cms-sw#38 from nclopezo/fix-relvals-slhc
Browse files Browse the repository at this point in the history
Fixed the interpretation of the results for the Relvals for SLHC
  • Loading branch information
ktf committed Mar 24, 2014
2 parents a443bf4 + 2fd1681 commit 7f5cee6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions report-summary-merged-prs
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,12 @@ def get_results_one_relval_file(file):
read_last_line_command = 'tail -n1 %s' %file

out = get_output_command(read_last_line_command)

if 'SLHC' in file:
if '0 0 0 0 failed' in out:
return True
else:
return False

if '0 0 0 0 0 failed' in out:
return True
Expand Down

0 comments on commit 7f5cee6

Please sign in to comment.