mirror of https://gitlab.com/basile.b/dexed.git
runnables, disable coverage ana if UT exited with errors
This commit is contained in:
parent
26ed0e0385
commit
72b1833f96
|
@ -34,7 +34,6 @@ end;
|
||||||
|
|
||||||
procedure getModuleImports(source, imports: TStrings);
|
procedure getModuleImports(source, imports: TStrings);
|
||||||
var
|
var
|
||||||
err: TStringList;
|
|
||||||
str: string;
|
str: string;
|
||||||
prc: TProcess;
|
prc: TProcess;
|
||||||
begin
|
begin
|
||||||
|
|
|
@ -2703,7 +2703,7 @@ var
|
||||||
i: integer;
|
i: integer;
|
||||||
begin
|
begin
|
||||||
asyncprocTerminate(sender);
|
asyncprocTerminate(sender);
|
||||||
if fCovModUt then
|
if fCovModUt and assigned(fRunProc) and (fRunProc.ExitStatus = 0) then
|
||||||
begin
|
begin
|
||||||
fname := stripFileExt(fDoc.fileName);
|
fname := stripFileExt(fDoc.fileName);
|
||||||
fullcov := true;
|
fullcov := true;
|
||||||
|
|
Loading…
Reference in New Issue