Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
2c8703c
Manual fixes to tests under tracing
trylek Sep 12, 2023
5441b94
Mechanically merge tests under the folder "tracing"
trylek Sep 12, 2023
8b14869
Manual adjustments for tests under "reflection"
trylek Sep 12, 2023
8b53e1d
Mechanically merge all tests under "reflection"
trylek Sep 12, 2023
c89380b
Manual adjustments to tests under readytorun
trylek Sep 12, 2023
e9d019b
Mechanically merge tests under readytorun
trylek Sep 12, 2023
37fb46e
Move coreroot_determinism to a separate wrapper as it's a lengthy test
trylek Sep 12, 2023
af09b49
Manual adjustments of tests under Regressions
trylek Sep 13, 2023
1a05675
Mechanically merge the Regressions folder
trylek Sep 13, 2023
54ca66b
Fix a previously missed property under readytorun/D.B.props
trylek Sep 13, 2023
b6abac4
Delete meaningless test per Mark's PR feedback
trylek Sep 13, 2023
2520d75
Remove unneeded exe output types per Mark's PR feedback
trylek Sep 14, 2023
41d60c5
Fix the renamed eventpipe_common project name in one JIT directed test
trylek Sep 14, 2023
0742b93
Fix two more tests referencing the renamed eventpipe_common project
trylek Sep 14, 2023
ef98770
Remove superfluous BuildOnly property from the provider.ilproj project
trylek Sep 14, 2023
7f4cd0c
Fix compilation failure in the 22888 regression test
trylek Oct 2, 2023
2db1f5d
Fix two readytorun tests to work in the merged mode
trylek Oct 2, 2023
7ef0822
Fix mainv1 and mainv2 version resiliency tests
trylek Oct 4, 2023
88a470a
Fix missing dependency of the mainv2 test on testv2
trylek Oct 4, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tests/JIT/Directed/debugging/debuginfo/tester.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<ProjectReference Include="tests_d.ilproj" Aliases="tests_d" />
<ProjectReference Include="tests_r.ilproj" Aliases="tests_r" />
<ProjectReference Include="attribute.csproj" />
<ProjectReference Include="../../../../tracing/eventpipe/common/common.csproj" />
<ProjectReference Include="../../../../tracing/eventpipe/common/eventpipe_common.csproj" />
<ProjectReference Include="../../../../tracing/eventpipe/common/Microsoft.Diagnostics.NETCore.Client/Microsoft.Diagnostics.NETCore.Client.csproj" />
<Compile Include="$(MSBuildProjectName).cs" />
</ItemGroup>
Expand Down
11 changes: 11 additions & 0 deletions src/tests/Regressions/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Merged.props', $(MSBuildThisFileDirectory)..))" />
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', $(MSBuildThisFileDirectory)..))" />

<PropertyGroup>
<RunAnalyzers>true</RunAnalyzers>
<NoWarn>$(NoWarn);xUnit1013</NoWarn>
<EnableNETAnalyzers>false</EnableNETAnalyzers>
</PropertyGroup>
</Project>
7 changes: 7 additions & 0 deletions src/tests/Regressions/Regressions.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<MergedWrapperProjectReference Include="*/**/*.??proj" />
</ItemGroup>

<Import Project="$(TestSourceDir)MergedTestRunner.targets" />
</Project>
Loading