-
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
[NativeAOT] Assertion failed 'node->IsUnusedValue() && "found an unmarked unused value"' - when compiling System.Net.Sockets.Tests #84112
Comments
Tagging subscribers to this area: @agocke, @MichalStrehovsky, @jkotas Issue Detailsnull
|
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch, @kunalspathak Issue Details // At this point the unusedDefs map should contain only unused values.
if (checkUnusedValues)
{
for (auto kvp : unusedDefs)
{
GenTree* node = kvp.Key();
assert(node->IsUnusedValue() && "found an unmarked unused value"); <==== here
assert(!node->isContained() && "a contained node should have a user");
}
}
|
I will disable the offending test. Just need to be sure it is the only one affected. |
This must be a relatively recent issue. I run tests with chk runtime frequently and did not see it. |
This is the only test affected. With |
@VSadov can you please remind me how do I build a specific BCL test suite with NAOT? I think last time I tried it only worked for the whole BCL suite and took several hours |
I takes about 12-15 minutes to run the whole suite on AMD 5950X from clean state, so it is not too bad. I run the whole suite fairly often. It does need a fast machine with lots of memory though. There were some instructions for selective compiling/running tests in #78717 |
|
The text was updated successfully, but these errors were encountered: