Skip to content

Commit

Permalink
fix(tests): enable skipped test for Clang and FreeBSD (#369)
Browse files Browse the repository at this point in the history
The test now works with Clang, libc++ and -O2 optimization, since the underlying implementation has been completely re-designed and doesn't suffer from that problem anymore.
  • Loading branch information
sangelovic authored Oct 24, 2023
1 parent 5a65d17 commit 7edea36
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/integrationtests/DBusMethodsTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,6 @@ TYPED_TEST(SdbusTestObject, CannotSetGeneralMethodTimeoutWithLibsystemdVersionLe

TYPED_TEST(SdbusTestObject, CanCallMethodSynchronouslyWithoutAnEventLoopThread)
{
#if defined(__clang__) && defined(__FreeBSD__)
GTEST_SKIP() << "https://github.com/Kistler-Group/sdbus-cpp/issues/359";
#endif

auto proxy = std::make_unique<TestProxy>(BUS_NAME, OBJECT_PATH, sdbus::dont_run_event_loop_thread);

auto multiplyRes = proxy->multiply(INT64_VALUE, DOUBLE_VALUE);
Expand Down

0 comments on commit 7edea36

Please sign in to comment.