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.
This commit is contained in:
Ben Noordhuis 2012-11-20 00:42:47 +01:00
parent e997dd5981
commit d8a8379751

View File

@ -26,7 +26,7 @@
#include <fcntl.h>
#ifndef HAVE_KQUEUE
# if __APPLE__ || __FreeBSD__ || __OpenBSD__ || __NetBSD__
# if __APPLE__ || __DragonFly__ || __FreeBSD__ || __OpenBSD__ || __NetBSD__
# define HAVE_KQUEUE 1
# endif
#endif