1 //===----------- TaskDispatchTest.cpp - Test TaskDispatch APIs ------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "llvm/ExecutionEngine/Orc/TaskDispatch.h"
10 #include "gtest/gtest.h"
15 using namespace llvm::orc
;
17 TEST(InPlaceTaskDispatchTest
, GenericNamedTask
) {
18 auto D
= std::make_unique
<InPlaceTaskDispatcher
>();
20 D
->dispatch(makeGenericNamedTask([&]() { B
= true; }));
25 #if LLVM_ENABLE_THREADS
26 TEST(DynamicThreadPoolDispatchTest
, GenericNamedTask
) {
27 auto D
= std::make_unique
<DynamicThreadPoolTaskDispatcher
>();
29 auto F
= P
.get_future();
30 D
->dispatch(makeGenericNamedTask(
31 [P
= std::move(P
)]() mutable { P
.set_value(true); }));