From 12c73915dc706641e8ade231d07e0f3669bcebe9 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 26 Apr 2023 18:58:34 +0200 Subject: [PATCH] Tests: Re-enable TestLibCoreFileWatcher on macOS Now that cross-thread event posting is unbroken, this should work. --- Tests/LibCore/TestLibCoreFileWatcher.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Tests/LibCore/TestLibCoreFileWatcher.cpp b/Tests/LibCore/TestLibCoreFileWatcher.cpp index b81a0bffdb4..39c91630833 100644 --- a/Tests/LibCore/TestLibCoreFileWatcher.cpp +++ b/Tests/LibCore/TestLibCoreFileWatcher.cpp @@ -12,8 +12,6 @@ #include #include -// FIXME: Figure out why this breaks on macOS. -#ifndef AK_OS_MACOS TEST_CASE(file_watcher_child_events) { auto event_loop = Core::EventLoop(); @@ -64,4 +62,3 @@ TEST_CASE(file_watcher_child_events) event_loop.exec(); } -#endif