summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2018-03-23 10:14:19 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2018-03-23 10:14:19 +0000
commitfbd4df2176a8d2d2f21d1bed9bddcda4f56f17ce (patch)
treeca18c55a9a9ec988d88b5fb48e82b22c0bf92de4 /llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp
parent54634f19907efa692681e80f3b134808c10b2e35 (diff)
downloadbcm5719-llvm-fbd4df2176a8d2d2f21d1bed9bddcda4f56f17ce.tar.gz
bcm5719-llvm-fbd4df2176a8d2d2f21d1bed9bddcda4f56f17ce.zip
[ORC] Join materialization thread in unit test
There's are race between this thread and the destructor of the test ORC components on the main threads. I saw flaky failures there in about 4% of the runs of this unit test. llvm-svn: 328300
Diffstat (limited to 'llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp')
-rw-r--r--llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp b/llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp
index d37596ec5df..f862119c165 100644
--- a/llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp
@@ -392,15 +392,15 @@ TEST(CoreAPIsTest, TestLookupWithThreadedMaterialization) {
ExecutionSession ES(SSP);
- auto MaterializeOnNewThread = [&ES](VSO &V,
- std::unique_ptr<MaterializationUnit> MU) {
+ std::thread MaterializationThread;
+ auto MaterializeOnNewThread = [&](VSO &V,
+ std::unique_ptr<MaterializationUnit> MU) {
// FIXME: Use move capture once we move to C++14.
std::shared_ptr<MaterializationUnit> SharedMU = std::move(MU);
- std::thread([&ES, &V, SharedMU]() {
+ MaterializationThread = std::thread([&ES, &V, SharedMU]() {
if (auto Err = SharedMU->materialize(V))
ES.reportError(std::move(Err));
- })
- .detach();
+ });
};
auto FooLookupResult =
@@ -410,6 +410,7 @@ TEST(CoreAPIsTest, TestLookupWithThreadedMaterialization) {
<< "lookup returned an incorrect address";
EXPECT_EQ(FooLookupResult.getFlags(), FooSym.getFlags())
<< "lookup returned incorrect flags";
+ MaterializationThread.join();
#endif
}
OpenPOWER on IntegriCloud