-
Notifications
You must be signed in to change notification settings - Fork 383
Move tests and test debuggees to repo root 'tests' directory #5554
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
max-charlamb
wants to merge
35
commits into
dotnet:main
Choose a base branch
from
max-charlamb:organize_tests2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
8186c59
Move tests and test debuggees to repo root 'tests' directory
ad7cdcd
Remove debuggee from DbgShim.UnitTest project
1f9a870
Everything under the tests directory is not packable
93a5efa
Fix packing in official build
a57bf97
Fix single-file build step
b8315c8
Merge remote-tracking branch 'upstream/main' into organize_tests
steveisok cd2e7d8
Merge remote-tracking branch 'upstream/main' into organize_tests
steveisok aebac9c
Split out build tools and tests from running them
steveisok 7c06f2d
Use -withtests instead because powershell doesn't seem to like prefix…
steveisok b118af2
WIP - DbgShim.UnitTests can run outside of the repo with a few tweaks…
steveisok 2a8905b
Merge remote-tracking branch 'upstream/main' into organize_tests
steveisok 6eecb79
fix paths
max-charlamb 37097ef
Merge branch 'main' into organize_tests2
max-charlamb 878a01a
modify build.proj
max-charlamb 56fd8e8
fix source-build
max-charlamb 2ed0c53
support helix in build.ps1
max-charlamb 1c87d1c
remove references to helix
max-charlamb 418570a
remove helix references
max-charlamb 5dc3574
modify cli arguments
max-charlamb 12da84a
Update eng/build.ps1
max-charlamb 4d0b29f
fix pipeline
max-charlamb 7a4f23e
undo change
max-charlamb 73ff521
Move tests into src/tests and adjust any pathing weirdness
steveisok a6e0aaf
Add binaries and other ignored files that were in tree back
steveisok f615832
Merge remote-tracking branch 'upstream/main' into organize_tests2
steveisok 8b10fe4
Correct lldbplugin.tests location
steveisok ac4805a
Revert changes intended for running tests standalone
steveisok cd7353b
Rename .UnitTests to .Tests
steveisok da813d8
Merge remote-tracking branch 'origin/main' into organize_tests2
max-charlamb 6cd41d8
fix merge issues
max-charlamb cdd9731
fix slnx file
max-charlamb 17d0633
Add back test binaries
steveisok 5c4e284
update .gitignore to ignore dirs.slnx
max-charlamb 521f47d
use slngen/dirs.proj for build
max-charlamb a61dae8
reduce diff
max-charlamb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
.vs/ | ||
*.VC.db | ||
.venv/ | ||
dirs.slnx | ||
|
||
# Build results | ||
[Aa]rtifacts/ | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<Project Sdk="Microsoft.Build.Traversal"> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="src/dirs.proj" Condition="'$(BundleTools)' != 'true' and '$(DotNetBuild)' != 'true'" /> | ||
<ProjectReference Include="src/tests/dirs.proj" Condition="'$(BundleTools)' != 'true' and '$(DotNetBuild)' != 'true'" /> | ||
|
||
<ProjectReference Include="src/singlefile-tools.proj" Condition="'$(BundleTools)' == 'true'" /> | ||
|
||
<!-- Only build the NETCore.Client library in .NET product build mode. --> | ||
<ProjectReference Include="src/Microsoft.Diagnostics.NETCore.Client/Microsoft.Diagnostics.NETCore.Client.csproj" Condition="'$(DotNetBuild)' == 'true'" /> | ||
</ItemGroup> | ||
</Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,5 @@ | ||
<Project> | ||
|
||
<!-- Only build the NETCore.Client library in .NET product build mode. --> | ||
<ItemGroup Condition="'$(DotNetBuild)' == 'true'"> | ||
<ProjectToBuild Include="$(RepoRoot)src/Microsoft.Diagnostics.NETCore.Client/Microsoft.Diagnostics.NETCore.Client.csproj" /> | ||
<ItemGroup Condition="'$(DotNetBuild)' != 'true'"> | ||
<ProjectToBuild Include="$(RepoRoot)dirs.proj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(BundleTools)' == 'true' "> | ||
<ProjectToBuild Include="$(RepoRoot)src/singlefile-tools.proj" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
</Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.