Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions strings/base_coroutine_foundation.h
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ namespace winrt::impl

if (handler)
{
invoke(handler, *this, status);
winrt::impl::invoke(handler, *this, status);
}
}

Expand Down Expand Up @@ -539,7 +539,7 @@ namespace winrt::impl

if (handler)
{
invoke(handler, *this, status);
winrt::impl::invoke(handler, *this, status);
}
}

Expand Down
20 changes: 0 additions & 20 deletions test/test/disconnected.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,7 @@ TEST_CASE("disconnected,handler,1")
source(nullptr, 123);
}

#if defined(__clang__)
// FIXME: Test is known to fail with unhandled exception when built with Clang.
TEST_CASE("disconnected,handler,2", "[!shouldfail]")
#else
TEST_CASE("disconnected,handler,2")
#endif
{
auto async = Action();

Expand All @@ -93,12 +88,7 @@ TEST_CASE("disconnected,handler,2")
});
}

#if defined(__clang__)
// FIXME: Test is known to abort when built with Clang. (Seems to be from unhandled exception thrown on a worker thread.)
TEST_CASE("disconnected,handler,3", "[.clang-crash]")
#else
TEST_CASE("disconnected,handler,3")
#endif
{
auto async = ActionProgress();
handle signal{ CreateEventW(nullptr, true, false, nullptr) };
Expand All @@ -117,12 +107,7 @@ TEST_CASE("disconnected,handler,3")
WaitForSingleObject(signal.get(), INFINITE);
}

#if defined(__clang__)
// FIXME: Test is known to fail with unhandled exception when built with Clang.
TEST_CASE("disconnected,handler,4", "[!shouldfail]")
#else
TEST_CASE("disconnected,handler,4")
#endif
{
auto async = Operation();

Expand All @@ -132,12 +117,7 @@ TEST_CASE("disconnected,handler,4")
});
}

#if defined(__clang__)
// FIXME: Test is known to abort when built with Clang. (Seems to be from unhandled exception thrown on a worker thread.)
TEST_CASE("disconnected,handler,5", "[.clang-crash]")
#else
TEST_CASE("disconnected,handler,5")
#endif
{
auto async = OperationProgress();
handle signal{ CreateEventW(nullptr, true, false, nullptr) };
Expand Down
20 changes: 0 additions & 20 deletions test/test_win7/disconnected.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,7 @@ TEST_CASE("disconnected,1")
source(nullptr, 123);
}

#if defined(__clang__)
// FIXME: Test is known to fail with unhandled exception when built with Clang.
TEST_CASE("disconnected,2", "[!shouldfail]")
#else
TEST_CASE("disconnected,2")
#endif
{
auto async = Action();

Expand All @@ -82,12 +77,7 @@ TEST_CASE("disconnected,2")
});
}

#if defined(__clang__)
// FIXME: Test is known to abort when built with Clang. (Seems to be from unhandled exception thrown on a worker thread.)
TEST_CASE("disconnected,3", "[.clang-crash]")
#else
TEST_CASE("disconnected,3")
#endif
{
auto async = ActionProgress();
handle signal{ CreateEventW(nullptr, true, false, nullptr) };
Expand All @@ -106,12 +96,7 @@ TEST_CASE("disconnected,3")
WaitForSingleObject(signal.get(), INFINITE);
}

#if defined(__clang__)
// FIXME: Test is known to fail with unhandled exception when built with Clang.
TEST_CASE("disconnected,4", "[!shouldfail]")
#else
TEST_CASE("disconnected,4")
#endif
{
auto async = Operation();

Expand All @@ -121,12 +106,7 @@ TEST_CASE("disconnected,4")
});
}

#if defined(__clang__)
// FIXME: Test is known to abort when built with Clang. (Seems to be from unhandled exception thrown on a worker thread.)
TEST_CASE("disconnected,5", "[.clang-crash]")
#else
TEST_CASE("disconnected,5")
#endif
{
auto async = OperationProgress();
handle signal{ CreateEventW(nullptr, true, false, nullptr) };
Expand Down