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
Expand Up @@ -6,7 +6,8 @@
var files := Directory.GetFiles(Path.Combine(pabcpath, 'OptimizedAssemblies')); var files := Directory.GetFiles(Path.Combine(pabcpath, 'OptimizedAssemblies'));
foreach var s in files do foreach var s in files do
begin begin
&File.Delete(s); if Path.GetFileName(s) <> '.gitignore' then
&File.Delete(s);
end; end;
var mpgo := Path.Combine(pabcpath,'Utils\Performance Tools\mpgo.exe'); var mpgo := Path.Combine(pabcpath,'Utils\Performance Tools\mpgo.exe');
psi.FileName := mpgo; psi.FileName := mpgo;
Expand Down
Binary file modified bin/TestRunner.exe
Binary file not shown.
3 changes: 2 additions & 1 deletion bin/TestRunner.pas
Expand Up @@ -219,7 +219,8 @@ procedure ClearDirByPattern(dir, pattern: string);
for var i := 0 to files.Length - 1 do for var i := 0 to files.Length - 1 do
begin begin
try try
&File.Delete(files[i]); if Path.GetFileName(files[i]) <> '.gitignore' then
&File.Delete(files[i]);
except except
end; end;
end; end;
Expand Down

0 comments on commit e11ebef

Please sign in to comment.