[Tests] Run runtime test in Release/Aot configuration again

Recently the migration of running the apk tests to msbuild
(cdf3bcc11a)
stopped running runtime test with Aot and thus we are missing
performance measurements for Release/Aot.

The reason of it is that `_AotName` property is not set, when calling
MSBuild task to run the apk tests. This patch sets the `AotAssemblies`
property when calling `RunApkTests.targets`
This commit is contained in:
Radek Doulik 2017-11-15 09:23:31 +01:00 коммит произвёл Radek Doulik
Родитель 20c722a94a
Коммит a1e65419c2
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -76,6 +76,7 @@
<MSBuild
Projects="$(_TopDir)\tests\RunApkTests.targets"
Condition=" '$(Configuration)' == 'Release' "
Properties="AotAssemblies=True"
/>
</Target>
<Target Name="RunAllTests" DependsOnTargets="RunNUnitTests;RunJavaInteropTests;RunApkTests" />