From d8a8379751ffc5ea4d4c0b5e15398de5f922ae19 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 20 Nov 2012 00:42:47 +0100 Subject: [PATCH] test: disable fs event test on dragonflybsd Disable the fs_event_close_in_callback test on DragonFlyBSD, like we do on the other BSDs. The test doesn't work with kqueue-based file notifications, the event is generated before the file is watched. Maybe we should remove it altogether. --- test/test-fs-event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-fs-event.c b/test/test-fs-event.c index 0599c88e..67f94219 100644 --- a/test/test-fs-event.c +++ b/test/test-fs-event.c @@ -26,7 +26,7 @@ #include #ifndef HAVE_KQUEUE -# if __APPLE__ || __FreeBSD__ || __OpenBSD__ || __NetBSD__ +# if __APPLE__ || __DragonFly__ || __FreeBSD__ || __OpenBSD__ || __NetBSD__ # define HAVE_KQUEUE 1 # endif #endif