Skip to content

Commit

Permalink
MPGORunner and TestRunner modified
Browse files Browse the repository at this point in the history
  • Loading branch information
ibond84 committed May 15, 2015
1 parent f07f775 commit e11ebef
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
Empty file added TestSuite/exe/.gitignore
Empty file.
Binary file modified bin/MPGORunner.exe
Binary file not shown.
3 changes: 2 additions & 1 deletion bin/MPGORunner.pas
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
var files := Directory.GetFiles(Path.Combine(pabcpath, 'OptimizedAssemblies'));
foreach var s in files do
begin
&File.Delete(s);
if Path.GetFileName(s) <> '.gitignore' then
&File.Delete(s);
end;
var mpgo := Path.Combine(pabcpath,'Utils\Performance Tools\mpgo.exe');
psi.FileName := mpgo;
Expand Down
Binary file modified bin/TestRunner.exe
Binary file not shown.
3 changes: 2 additions & 1 deletion bin/TestRunner.pas
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ procedure ClearDirByPattern(dir, pattern: string);
for var i := 0 to files.Length - 1 do
begin
try
&File.Delete(files[i]);
if Path.GetFileName(files[i]) <> '.gitignore' then
&File.Delete(files[i]);
except
end;
end;
Expand Down

0 comments on commit e11ebef

Please sign in to comment.