-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Fix ldarg_i test #79834
Fix ldarg_i test #79834
Conversation
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch, @kunalspathak Issue DetailsWhen changing the test recently, I have missed the conv.i4 that I should have removed from the preexisting code. The test was passing when
|
@@ -24,7 +24,6 @@ | |||
ldsflda int32 _ldarg::FOO | |||
ldc.i4 0x2 | |||
add | |||
conv.i4 | |||
ldsflda int32 _ldarg::FOO | |||
call int32 _ldarg::args(int32) |
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'm confused: the main branch contains:
call native int _ldarg::args(native int)
but GitHub is showing me the baseline of:
call int32 _ldarg::args(int32)
?
Note that you need to trigger outerloop tests if you want this test to actually run. |
When changing the test recently, I have missed the conv.i4 that I should have removed from the preexisting code. The test was passing when `runincontext` was passed to the coreclr test run, so I have incorrectly assumed that it will work in regular runs too.
f0a0ce9
to
893bb55
Compare
@BruceForstall I've accidentally made the change against an old main. I've just force pushed a fixed one. |
/azp run runtime-coreclr outerloop |
Azure Pipelines successfully started running 1 pipeline(s). |
The pri-0 test build failed due to some nuget problem, but the outerloop test run succeeded, so I'm going to merge this. |
When changing the test recently, I have missed the conv.i4 that I should have removed from the preexisting code. The test was passing when
runincontext
was passed to the coreclr test run, so I have incorrectly assumed that it will work in regular runs too.