diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2018-03-23 10:14:19 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2018-03-23 10:14:19 +0000 |
commit | fbd4df2176a8d2d2f21d1bed9bddcda4f56f17ce (patch) | |
tree | ca18c55a9a9ec988d88b5fb48e82b22c0bf92de4 /llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp | |
parent | 54634f19907efa692681e80f3b134808c10b2e35 (diff) | |
download | bcm5719-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.cpp | 11 |
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 } |