MPGORunner and TestRunner modified

This commit is contained in:
Бондарев Иван 2015-05-15 11:35:40 +02:00
parent f07f77512a
commit e11ebef2f8
7 changed files with 4 additions and 2 deletions

0
TestSuite/exe/.gitignore vendored Normal file
View file

Binary file not shown.

View file

@ -6,7 +6,8 @@ begin
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;

Binary file not shown.

View file

@ -219,7 +219,8 @@ begin
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;