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

Should.CompleteIn deadlocks on single threaded synchronization context #867

Open
rick-palmsens opened this issue Oct 19, 2022 · 0 comments

Comments

@rick-palmsens
Copy link

rick-palmsens commented Oct 19, 2022

Example:

using Nito.AsyncEx;
using Shouldly;

AsyncContext.Run(() =>
{
    Should.CompleteIn(async () =>
    {
        Console.WriteLine("Starting delay");
        await Task.Delay(100);
        Console.WriteLine("Delay completed");

    }, Timeout.InfiniteTimeSpan);
});

Expected output:

Starting delay
Delay completed

Actual output:

Starting delay
@rick-palmsens rick-palmsens changed the title Should.CompleteIn deadlocks on single threaded synchronization contexts Should.CompleteIn deadlocks on single threaded synchronization context Oct 19, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant