From 4fd09d4e815463022ff79f9a7bdcef8d6526d6a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanislav=20Angelovi=C4=8D?= Date: Tue, 24 Oct 2023 22:13:36 +0200 Subject: [PATCH] fix(tests): enable skipped test for Clang and FreeBSD (#369) 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. --- tests/integrationtests/DBusMethodsTests.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/integrationtests/DBusMethodsTests.cpp b/tests/integrationtests/DBusMethodsTests.cpp index 8d712b7..a6fdc03 100644 --- a/tests/integrationtests/DBusMethodsTests.cpp +++ b/tests/integrationtests/DBusMethodsTests.cpp @@ -282,10 +282,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(BUS_NAME, OBJECT_PATH, sdbus::dont_run_event_loop_thread); auto multiplyRes = proxy->multiply(INT64_VALUE, DOUBLE_VALUE);