-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Run EndToEnd tests in a more isolated/controlled environment #62433
Conversation
{ | ||
if (Regex.IsMatch(name, pattern.Trim('\'', '"'))) | ||
{ | ||
continue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 we had a bug here
{ | ||
/// <summary> | ||
/// The EndToEnd tests are isolated from other compiler test to avoid other tests and random |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rather than a doc comment, consider putting a README.md in the directory that details this. It shows up better when looking in GitHub.
There we can detail all of the elements we are trying to isolate because they can impact our stress points. Specifically:
- JIT ordering
- GC side effects
- Implicit caching
- Starting stack size #Resolved
</ItemGroup> | ||
<ItemGroup> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
</ItemGroup> | |
<ItemGroup> |
</ItemGroup> | ||
<ItemGroup> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
</ItemGroup> | |
<ItemGroup> |
Don't need all this ItemGroup
separation, just makes the file bigger
<ItemGroup> | ||
</ItemGroup> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<ItemGroup> | |
</ItemGroup> |
eng/build.ps1
Outdated
@@ -62,6 +62,7 @@ param ( | |||
[switch][Alias('test')]$testDesktop, | |||
[switch]$testCoreClr, | |||
[switch]$testCompilerOnly = $false, | |||
[switch]$testCompilerEndToEndOnly = $false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need a separate switch? The test parallelization code has a granularity of class
. That means a unit test assembly with a single class
will always be run as a complete unit. Unsure why we need a separate runner here.
Basically this switch is no different than running dotnet test
in the EndToEnd directory. Not sure it's worth the cost to our build infrastructure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jcouv didn't see an answer to this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've removed the testCompilerEndToEndOnly
from the public surface area of this script
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jaredpar Reverted changes to build.ps1
. Thanks
@jaredpar @RikkiGibson Pleast take another look. Thanks |
@jaredpar Please take another look. Thanks |
After this is merged, I'm going to take a stab at raising limits up again.