kadircet updated this revision to Diff 255914.
kadircet marked 4 inline comments as done.
kadircet added a comment.
- Assert on the execution order instead with simplifications.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77669/new/
https://revie
kadircet added inline comments.
Comment at: clang-tools-extra/clangd/unittests/TUSchedulerTests.cpp:849
+ auto Opts = ClangdServer::optsForTest();
+ Opts.AsyncThreadsCount = 0;
+ ClangdServer Server(CDB, FS, Opts, &CaptureTUStatus);
sammccall wrote:
> This see