Skip to content
Snippets Groups Projects
Commit 3d92ed98 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix broken test build

parent 65043d4d
No related branches found
No related tags found
No related merge requests found
...@@ -61,16 +61,16 @@ namespace tut ...@@ -61,16 +61,16 @@ namespace tut
struct StaticData struct StaticData
{ {
std::mutex mMutex; // LockStatic looks for mMutex LLMutex mMutex; // LockStatic looks for mMutex
bool ran{false}; bool ran{false};
}; };
typedef llthread::LockStatic<StaticData> LockStatic; typedef llthread::LockStaticLL<StaticData> LockStatic;
template<> template<> template<> template<>
void object::test<2>() void object::test<2>()
{ {
set_test_name("cross-thread"); set_test_name("cross-thread");
skip("This test is prone to build-time hangs"); //skip("This test is prone to build-time hangs");
std::atomic_bool result(false); std::atomic_bool result(false);
// wrapping our thread lambda in a packaged_task will catch any // wrapping our thread lambda in a packaged_task will catch any
// exceptions it might throw and deliver them via future // exceptions it might throw and deliver them via future
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment