Tests: Re-enable TestLibCoreFileWatcher on macOS

Now that cross-thread event posting is unbroken, this should work.
This commit is contained in:
Andreas Kling
2023-04-26 18:58:34 +02:00
committed by Sam Atkins
parent b61a87c03c
commit 12c73915dc

View File

@@ -12,8 +12,6 @@
#include <fcntl.h>
#include <unistd.h>
// 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