mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 12:09:30 +02:00
* Cosmetic changes & correction aDate param
This commit is contained in:
parent
984a468997
commit
74180145d7
@ -244,12 +244,12 @@ begin
|
|||||||
end
|
end
|
||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
if (date>last_date[aStatus]) then
|
if (aDate>last_date[aStatus]) then
|
||||||
begin
|
begin
|
||||||
last_date[aStatus]:=aDate;
|
last_date[aStatus]:=aDate;
|
||||||
last_date_id[aStatus]:=aRunID;
|
last_date_id[aStatus]:=aRunID;
|
||||||
end;
|
end;
|
||||||
if date<first_date[aStatus] then
|
if (aDate<first_date[aStatus]) then
|
||||||
begin
|
begin
|
||||||
first_date[aStatus]:=aDate;
|
first_date[aStatus]:=aDate;
|
||||||
first_date_id[aStatus]:=aRunID;
|
first_date_id[aStatus]:=aRunID;
|
||||||
@ -387,10 +387,10 @@ begin
|
|||||||
DumpLn(Format('%3.1f',[cpu_count[i,TS]*100/result_count[TS]]));
|
DumpLn(Format('%3.1f',[cpu_count[i,TS]*100/result_count[TS]]));
|
||||||
CellNext;
|
CellNext;
|
||||||
DumpLn(FormatDetailURL(cpu_first_date_id[i,TS], cpu_first_date[i,TS]));
|
DumpLn(FormatDetailURL(cpu_first_date_id[i,TS], cpu_first_date[i,TS]));
|
||||||
DumpLn(' '+IntToStr(FSQL.GetFailCount(cpu_first_date_id[i,TS])));
|
DumpLn(' : '+IntToStr(FSQL.GetFailCount(cpu_first_date_id[i,TS])));
|
||||||
CellNext;
|
CellNext;
|
||||||
DumpLn(FormatDetailURL(cpu_last_date_id[i,TS], cpu_last_date[i,TS]));
|
DumpLn(FormatDetailURL(cpu_last_date_id[i,TS], cpu_last_date[i,TS]));
|
||||||
DumpLn(' '+IntToStr(FSQL.GetFailCount(cpu_last_date_id[i,TS])));
|
DumpLn(' : '+IntToStr(FSQL.GetFailCount(cpu_last_date_id[i,TS])));
|
||||||
CellEnd;
|
CellEnd;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
@ -418,10 +418,10 @@ begin
|
|||||||
DumpLn(Format('%3.1f',[os_count[i,TS]*100/result_count[TS]]));
|
DumpLn(Format('%3.1f',[os_count[i,TS]*100/result_count[TS]]));
|
||||||
CellNext;
|
CellNext;
|
||||||
DumpLn(FormatDetailURL(os_first_date_id[i,TS],os_first_date[i,TS]));
|
DumpLn(FormatDetailURL(os_first_date_id[i,TS],os_first_date[i,TS]));
|
||||||
DumpLn(' '+IntToStr(FSQL.GetFailCount(os_first_date_id[i,TS])));
|
DumpLn(' : '+IntToStr(FSQL.GetFailCount(os_first_date_id[i,TS])));
|
||||||
CellNext;
|
CellNext;
|
||||||
DumpLn(FormatDetailURL(os_last_date_id[i,TS],os_last_date[i,TS]));
|
DumpLn(FormatDetailURL(os_last_date_id[i,TS],os_last_date[i,TS]));
|
||||||
DumpLn(' '+IntToStr(FSQL.GetFailCount(os_last_date_id[i,TS])));
|
DumpLn(' : '+IntToStr(FSQL.GetFailCount(os_last_date_id[i,TS])));
|
||||||
CellEnd;
|
CellEnd;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
@ -448,10 +448,10 @@ begin
|
|||||||
DumpLn(Format('%3.1f',[version_count[i,TS]*100/result_count[TS]]));
|
DumpLn(Format('%3.1f',[version_count[i,TS]*100/result_count[TS]]));
|
||||||
CellNext;
|
CellNext;
|
||||||
DumpLn(FormatDetailURL(version_first_date_id[i,TS],version_first_date[i,TS]));
|
DumpLn(FormatDetailURL(version_first_date_id[i,TS],version_first_date[i,TS]));
|
||||||
DumpLn(' '+IntToStr(FSQL.GetFailCount(version_first_date_id[i,TS])));
|
DumpLn(' : '+IntToStr(FSQL.GetFailCount(version_first_date_id[i,TS])));
|
||||||
CellNext;
|
CellNext;
|
||||||
DumpLn(FormatDetailURL(version_last_date_id[i,TS], version_last_date[i,TS]));
|
DumpLn(FormatDetailURL(version_last_date_id[i,TS], version_last_date[i,TS]));
|
||||||
DumpLn(' '+IntToStr(FSQL.GetFailCount(version_last_date_id[i,TS])));
|
DumpLn(' : '+IntToStr(FSQL.GetFailCount(version_last_date_id[i,TS])));
|
||||||
CellEnd;
|
CellEnd;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user