Browse Source

Also output parameters of called program when calling Terminate, useful when using emulator, to know which test does not finish

git-svn-id: trunk@34159 -
pierre 9 years ago
parent
commit
b3f1596a1d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      tests/utils/redir.pp

+ 2 - 1
tests/utils/redir.pp

@@ -1111,7 +1111,8 @@ begin
           begin
             P.Terminate(255);
             if TerminateSentCount=0 then
-              Writeln(stderr,'Terminate requested for ',Path);
+              { also write ComLine in order to know which test is not ended in time }
+              Writeln(stderr,'Terminate requested for ',Path,' ',ComLine);
             Inc(TerminateSentCount);
           end;