line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
<%args> |
2
|
|
|
|
|
|
|
$report |
3
|
|
|
|
|
|
|
$testrun |
4
|
|
|
|
|
|
|
$overview |
5
|
|
|
|
|
|
|
$hostname |
6
|
|
|
|
|
|
|
$time |
7
|
|
|
|
|
|
|
%reportlist_rgt => {} |
8
|
|
|
|
|
|
|
$precondition_string => '' |
9
|
|
|
|
|
|
|
</%args> |
10
|
|
|
|
|
|
|
|
11
|
1
|
|
|
1
|
|
5684
|
% use Data::Dumper; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
490
|
|
12
|
|
|
|
|
|
|
% my $topic = $testrun->topic_name; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
<h3> |
15
|
|
|
|
|
|
|
Testrun |
16
|
|
|
|
|
|
|
<strong><% $testrun->id %></strong>: |
17
|
|
|
|
|
|
|
<strong><a href="/tapper/testruns/topic/<% $topic %>"><% $topic %></a></strong> |
18
|
|
|
|
|
|
|
</h3> |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
<!-- ************************************************************ --> |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
% if (%reportlist_rgt) { |
23
|
|
|
|
|
|
|
<h4>Reports</h4> |
24
|
|
|
|
|
|
|
<& /tapper/reports/reportlist.mas, reportlist => \%reportlist_rgt &> |
25
|
|
|
|
|
|
|
%} |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
<!-- ************************************************************ --> |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
<ul class="post_info"> |
31
|
|
|
|
|
|
|
<li class="date"><% $time || '' %></li> |
32
|
|
|
|
|
|
|
<li class="meta">Host: '<% $hostname || '' %>'</li> |
33
|
|
|
|
|
|
|
</ul> |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
<!-- ************************************************************ --> |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
<& /tapper/testruns/testrun_overview.mas, overview => $overview &> |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
<!-- <a href="/tapper/testruns/<% $testrun->id %>/similar" title="Create a new precondition and use this precondition as a template.">Create similar Testrun</a> |> --> |
40
|
|
|
|
|
|
|
<!-- <a href="/tapper/testruns/<% $testrun->id %>/change" title="Change values of this preconditions without creating a new one">Change Testrun</a> | --> |
41
|
|
|
|
|
|
|
<!-- <a href="/tapper/testruns/<% $testrun->id %>/delete" title="Information about testruns using this precondition will be wrong.">Delete Testrun</a> | --> |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
<!-- ************************************************************ --> |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
<h4>Preconditions</h4> |
46
|
|
|
|
|
|
|
<pre> |
47
|
|
|
|
|
|
|
<% $precondition_string %> |
48
|
|
|
|
|
|
|
</pre> |
49
|
|
|
|
|
|
|
% if ($testrun->testrun_scheduling->status eq 'schedule' or $testrun->testrun_scheduling->status eq 'prepare'){ |
50
|
|
|
|
|
|
|
<a href="/tapper/testruns/<% $testrun->id %>/preconditions/edit/">Edit precondition</a> |
51
|
|
|
|
|
|
|
% } |
52
|
|
|
|
|
|
|
<h4>Details</h4> |
53
|
|
|
|
|
|
|
<ul style="list-style-type:disc;"> |
54
|
|
|
|
|
|
|
<li style="margin-left: 1em;"><a href="/tapper/testruns/<% $testrun->id %>/preconditions/yaml/">Preconditions in raw YAML</a></li> |
55
|
|
|
|
|
|
|
% if ($testrun->testplan_id) { |
56
|
|
|
|
|
|
|
<li style="margin-left: 1em;"><a href="/tapper/testplan/id/<% $testrun->testplan_id %>">Associated testplan</a></li> |
57
|
|
|
|
|
|
|
% } |
58
|
|
|
|
|
|
|
</ul> |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
<!-- ************************************************************ --> |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
%# Local Variables: |
64
|
|
|
|
|
|
|
%# buffer-file-coding-system: utf-8 |
65
|
|
|
|
|
|
|
%# End: |
66
|
|
|
|
|
|
|
|