|
@@ -498,7 +498,7 @@ begin
|
|
EmitRow('Version:','Version');
|
|
EmitRow('Version:','Version');
|
|
EmitRow('Full version:','CompilerFullVersion');
|
|
EmitRow('Full version:','CompilerFullVersion');
|
|
EmitRow('Config:','Config');
|
|
EmitRow('Config:','Config');
|
|
- EmitRow('Machine:','Macgine');
|
|
|
|
|
|
+ EmitRow('Machine:','Machine');
|
|
if (FVars.CategoryID>0) then
|
|
if (FVars.CategoryID>0) then
|
|
EmitRow('Category:','TU_CATEGORY_FK');
|
|
EmitRow('Category:','TU_CATEGORY_FK');
|
|
If (FVars.CategoryID=1) then
|
|
If (FVars.CategoryID=1) then
|
|
@@ -644,7 +644,7 @@ begin
|
|
S:=S+' AND (not TR_OK)';
|
|
S:=S+' AND (not TR_OK)';
|
|
If FVars.NoSkipped then
|
|
If FVars.NoSkipped then
|
|
S:=S+' AND (not TR_SKIP)';
|
|
S:=S+' AND (not TR_SKIP)';
|
|
- S:=S+' ORDER BY TR_ID ';
|
|
|
|
|
|
+ S:=S+' ORDER BY T_ID ';
|
|
Qry:=S;
|
|
Qry:=S;
|
|
If FVars.Debug then
|
|
If FVars.Debug then
|
|
begin
|
|
begin
|
|
@@ -853,11 +853,11 @@ begin
|
|
if (FVars.TestFileName<>'') then
|
|
if (FVars.TestFileName<>'') then
|
|
WriteTestInfo;
|
|
WriteTestInfo;
|
|
ParaGraphStart;
|
|
ParaGraphStart;
|
|
- If not FInfo.IsAllCPU(FVars.CPUID) then
|
|
|
|
|
|
+ If FInfo.IsAllCPU(FVars.CPUID) then
|
|
lCPUMap:=FSQL.CreateMap(mtCPU);
|
|
lCPUMap:=FSQL.CreateMap(mtCPU);
|
|
- If not FInfo.IsAllOS(FVars.OSID) then
|
|
|
|
|
|
+ If FInfo.IsAllOS(FVars.OSID) then
|
|
lOSMap:=FSQL.CreateMap(mtOS);
|
|
lOSMap:=FSQL.CreateMap(mtOS);
|
|
- if not FInfo.IsAllVersion(fVars.VersionID) then
|
|
|
|
|
|
+ if FInfo.IsAllVersion(fVars.VersionID) then
|
|
lVersionMap:=FSQL.CreateMap(mtVersion);
|
|
lVersionMap:=FSQL.CreateMap(mtVersion);
|
|
lHistory:=TTestHistoryInfo.Create(FSQL,lOSMap,lCPUMap,lVersionMap);
|
|
lHistory:=TTestHistoryInfo.Create(FSQL,lOSMap,lCPUMap,lVersionMap);
|
|
lHistory.OnGetDetailURL:=@DoDetailURL;
|
|
lHistory.OnGetDetailURL:=@DoDetailURL;
|