diff options
author | Andy Ayers <andya@microsoft.com> | 2018-02-26 12:41:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-26 12:41:14 -0800 |
commit | 96850fb4c31379c5fc76ca78b9f4f3d448c862ac (patch) | |
tree | ef9aab45854679c1f7f51b269f97f3e5f4b4a5e2 /tests/build.proj | |
parent | 66aec8606d2714dc1f0a558817bdb93a87bf35b1 (diff) | |
download | coreclr-96850fb4c31379c5fc76ca78b9f4f3d448c862ac.tar.gz coreclr-96850fb4c31379c5fc76ca78b9f4f3d448c862ac.tar.bz2 coreclr-96850fb4c31379c5fc76ca78b9f4f3d448c862ac.zip |
Simplify test dependencies for benchmarks (#16378)
Remove the special benchmark configs and update benchmark projects accordingly.
Also update other random projects that were referencing benchmark configs.
Benchmarks now build against the default standard.
Addresses #14124, #16126.
Diffstat (limited to 'tests/build.proj')
-rw-r--r-- | tests/build.proj | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/build.proj b/tests/build.proj index 43c4997763..699a013029 100644 --- a/tests/build.proj +++ b/tests/build.proj @@ -21,15 +21,11 @@ </PropertyGroup> <ItemGroup> - <RestoreProjects Include="$(MSBuildThisFileDirectory)scripts\scripts.csproj" /> <RestoreProjects Include="$(MSBuildThisFileDirectory)src\Common\build_against_pkg_dependencies\build_against_pkg_dependencies.csproj" /> <RestoreProjects Include="$(MSBuildThisFileDirectory)src\Common\targeting_pack_ref\targeting_pack_ref.csproj" /> <RestoreProjects Include="$(MSBuildThisFileDirectory)src\Common\test_dependencies\test_dependencies.csproj" /> <RestoreProjects Include="$(MSBuildThisFileDirectory)src\Common\test_runtime\test_runtime.csproj" /> <RestoreProjects Include="$(MSBuildThisFileDirectory)src\Common\vc_runtime\vc_runtime.csproj" Condition="'$(__BuildArch)' == 'arm'"/> - <RestoreProjects Include="$(MSBuildThisFileDirectory)src\JIT\config\benchmark+roslyn\benchmark+roslyn.csproj" /> - <RestoreProjects Include="$(MSBuildThisFileDirectory)src\JIT\config\benchmark+serialize\benchmark+serialize.csproj" /> - <RestoreProjects Include="$(MSBuildThisFileDirectory)src\JIT\config\benchmark\benchmark.csproj" /> <RestoreProjects Include="$(MSBuildThisFileDirectory)src\performance\performance.csproj" /> <RestoreProjects Include="$(MSBuildThisFileDirectory)src\TestWrappersConfig\TestWrappersConfig.csproj" /> </ItemGroup> |