-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Precondition failure: File has not had execution verified #79439
Comments
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label. |
|
@elinor-fung could this be Fusion's revenge for #79380? |
I think it is #79341 - @jakobbotsch
|
@elinor-fung Why do you think it is related to #79341? It doesn't immediately strike me as being related. The failing configuration is release libraries with checked coreclr on win-x64. It looks like that configuration was skipped in the CI run for #77130 which might explain it. |
@elinor-fung @dotnet/interop-contrib Any progress on this one? I've seen this fail in a lot of pipelines today. |
Cc @stephentoub |
Standalone repro: Program.cs using System;
for (int i = 0; i < 10_000; i++) {
Test<Provider>();
}
static void Test<T>() where T:IProvider
{
string s = $@">>> {T.Value} <<<";
GC.KeepAlive(s);
}
interface IProvider
{
public static abstract MyEnum Value { get; }
}
class Provider : IProvider
{
public static MyEnum Value => default;
} MyEnum.cs - compile into separate .dll public enum MyEnum
{
} |
Token scanning was left-over from appdomains. It is not needed and it has subtle bugs that libraries tests started hitting recently. Fixes dotnet#79439
Token scanning was left-over from appdomains. It is not needed and it has subtle bugs that libraries tests started hitting recently. Fixes #79439
Build Information
Build: https://dev.azure.com/dnceng-public/cbb18261-c48f-4abb-8651-8cdcb5474649/_build/results?buildId=106998
Build error leg or test failing: ComInterfaceGenerator.Unit.Tests.WorkItemExecution
Pull request: #79433
Error Message
Fill the error message using known issues guidance.
Report
Summary
The text was updated successfully, but these errors were encountered: