Skip to content
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

Merged
merged 5 commits into from
Jul 13, 2022

Conversation

jcouv
Copy link
Member

@jcouv jcouv commented Jul 6, 2022

After this is merged, I'm going to take a stab at raising limits up again.

@jcouv jcouv self-assigned this Jul 6, 2022
@jcouv jcouv force-pushed the split-endtoend branch from ef767bc to 3f12b7d Compare July 7, 2022 16:35
@jcouv jcouv force-pushed the split-endtoend branch from ffa729c to 5719836 Compare July 7, 2022 23:11
{
if (Regex.IsMatch(name, pattern.Trim('\'', '"')))
{
continue;
Copy link
Member Author

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

@jcouv jcouv marked this pull request as ready for review July 8, 2022 16:03
@jcouv jcouv requested review from a team as code owners July 8, 2022 16:03
{
/// <summary>
/// The EndToEnd tests are isolated from other compiler test to avoid other tests and random
Copy link
Member

@jaredpar jaredpar Jul 8, 2022

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:

  1. JIT ordering
  2. GC side effects
  3. Implicit caching
  4. Starting stack size #Resolved

Comment on lines 18 to 19
</ItemGroup>
<ItemGroup>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
</ItemGroup>
<ItemGroup>

Comment on lines 23 to 24
</ItemGroup>
<ItemGroup>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
</ItemGroup>
<ItemGroup>

Don't need all this ItemGroup separation, just makes the file bigger

Comment on lines 28 to 29
<ItemGroup>
</ItemGroup>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<ItemGroup>
</ItemGroup>

eng/build.ps1 Outdated
@@ -62,6 +62,7 @@ param (
[switch][Alias('test')]$testDesktop,
[switch]$testCoreClr,
[switch]$testCompilerOnly = $false,
[switch]$testCompilerEndToEndOnly = $false,
Copy link
Member

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.

Copy link
Member

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.

Copy link
Member Author

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

Copy link
Member Author

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

@jcouv jcouv requested a review from jaredpar July 8, 2022 19:11
@jcouv
Copy link
Member Author

jcouv commented Jul 11, 2022

@jaredpar @RikkiGibson Pleast take another look. Thanks

@jcouv
Copy link
Member Author

jcouv commented Jul 11, 2022

@jaredpar Please take another look. Thanks

@jcouv jcouv enabled auto-merge (squash) July 13, 2022 00:20
@jcouv jcouv merged commit 4e7b392 into dotnet:main Jul 13, 2022
@ghost ghost added this to the Next milestone Jul 13, 2022
adamperlin pushed a commit to adamperlin/roslyn that referenced this pull request Jul 19, 2022
@allisonchou allisonchou removed this from the Next milestone Jul 26, 2022
@allisonchou allisonchou added this to the 17.4 P1 milestone Jul 26, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants