Skip to content

Enable ConsoleMandel test #116157

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
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

kunalspathak
Copy link
Member

It takes around 10 seconds to complete, but might be worth enabling it.

Fixes: #90276

@Copilot Copilot AI review requested due to automatic review settings May 30, 2025 19:45
@kunalspathak
Copy link
Member Author

@dotnet/jit-contrib

Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR enables the ConsoleMandel test by adjusting the test entry point to pass explicit command-line arguments that trigger benchmarking mode.

  • Updated TestEntryPoint to use a non-empty string array.
  • Passes the "-BENCH" flag with a parameter to initiate benchmarking.

@@ -67,7 +67,8 @@ private static void PrintUsage()
[Fact]
public static int TestEntryPoint()
{
return Test(Array.Empty<string>());
string[] testArgs = new string[] { "-BENCH", "1" };
Copy link
Preview

Copilot AI May 30, 2025

Choose a reason for hiding this comment

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

Consider adding a comment to explain the purpose and impact of the '-BENCH' flag so that maintainers can understand why these arguments are being passed.

Copilot uses AI. Check for mistakes.

@github-actions github-actions bot added the area-CodeGen-coreclr CLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI label May 30, 2025
Copy link
Contributor

Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch
See info in area-owners.md if you want to be subscribed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-CodeGen-coreclr CLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ConsoleMandel is not being (meaningfully) run
1 participant