Skip to content

Commit

Permalink
Mark async_cancel_after_callback test as "randomly crashes with clang…
Browse files Browse the repository at this point in the history
…-cl"
  • Loading branch information
alvinhochun committed Oct 18, 2022
1 parent b25dfcf commit aa6467d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/old_tests/UnitTests/async_cancel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,12 @@ TEST_CASE("async_cancel_before_callback")
REQUIRE(async.Status() == AsyncStatus::Canceled);
}

#if defined(__clang__)
// FIXME: Test is known to randomly crash when built with Clang.
TEST_CASE("async_cancel_after_callback", "[.clang-crash]")
#else
TEST_CASE("async_cancel_after_callback")
#endif
{
handle end{ CreateEvent(nullptr, true, false, nullptr) };
handle callback{ CreateEvent(nullptr, true, false, nullptr) };
Expand Down

0 comments on commit aa6467d

Please sign in to comment.