Commit ce5afdc6 authored by Aaryaman Sagar's avatar Aaryaman Sagar Committed by Facebook Github Bot

Fix test build break

Summary: T52681488

Reviewed By: Orvid

Differential Revision: D16901429

fbshipit-source-id: 0a5fc218edf6ef29b100365163102dbdc2abf313
parent 9bcfff7a
...@@ -1795,7 +1795,9 @@ void concurrentExceptionPropagationStress( ...@@ -1795,7 +1795,9 @@ void concurrentExceptionPropagationStress(
std::chrono::milliseconds t) { std::chrono::milliseconds t) {
// this test passes normally and under recent or Clang TSAN, but inexplicably // this test passes normally and under recent or Clang TSAN, but inexplicably
// TSAN-aborts under some older non-Clang TSAN versions // TSAN-aborts under some older non-Clang TSAN versions
SKIP_IF(folly::kIsSanitizeThread && !folly::kIsClang); if (folly::kIsSanitizeThread && !folly::kIsClang) {
return;
}
TestConstruction::reset(); TestConstruction::reset();
auto&& mutex = detail::distributed_mutex::DistributedMutex<Atom>{}; auto&& mutex = detail::distributed_mutex::DistributedMutex<Atom>{};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment