-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed Tests log by Test #39
Conversation
…/autobuild into FailedTestBriefLog_2_merged # Conflicts: # common/prettify.pm # scoreboard.pl
Failed Test Brief Log
Bug fix for Failed Test report
…moci/autobuild into FailedTestBriefLog_2_merged # Conflicts: # common/prettify.pm
…ailedTestBriefLog_2_merged
…nto FailedTestBriefLog_2_merged # Conflicts: # common/prettify.pm # scoreboard.pl
…ailedTestBriefLog_2_merged
common/prettify.pm
Outdated
if (!$skip_failed_test_logs) { | ||
push @{$self->{OUTPUT}}, new Prettify::Failed_Tests_HTML ($basename, $buildname, $rev_link, $log_prefix); #Must be 4, if used | ||
push @{$self->{OUTPUT}}, new Prettify::Failed_Tests_HTML ($basename, $buildname, $self->{FAILED_TESTS}, $rev_link, $log_prefix); #Must be 4, if used |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this comment be changed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or removed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is logic that relies on this being #4 - similar to other reports above
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe make the comment more clear. I assumed it meant that it needed 4 variables passed to be used.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made it more clear, and there is also a context right above, which makes it even more understandable:
@{$self->{OUTPUT}} =
(
new Prettify::Full_HTML ($basename), #Must be at 0
new Prettify::Brief_HTML ($basename),
new Prettify::Totals_HTML ($basename), #Must be at 2
new Prettify::Config_HTML ($basename), #Must be at 3
);
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only thing I see left to deal with is clarify the comment. Otherwise looks good.
No description provided.