Author: leo
Date: Mon Oct 24 12:38:34 2005
New Revision: 9544
Modified:
trunk/src/events.c
trunk/t/pmc/signal.t
Log:
disable capturing SIGHUP just for a test
Modified: trunk/src/events.c
==============================================================================
--- trunk/src/events.c (original)
+++ trunk/src/events.c Mon Oct 24 12:38:34 2005
@@ -29,9 +29,10 @@ dispatches these to one or all interpret
/*
* not yet - need to sort out platform code and fix exceptions first
* TODO get some config for POSIX compliant
+ * TODO create API for extenders like ponie - events disabled for now
*/
#if defined(linux) || defined(darwin)
-# define INSTALL_EVENT_HANDLER 1
+# define INSTALL_EVENT_HANDLER 0
#else
# define INSTALL_EVENT_HANDLER 0
#endif
Modified: trunk/t/pmc/signal.t
==============================================================================
--- trunk/t/pmc/signal.t (original)
+++ trunk/t/pmc/signal.t Mon Oct 24 12:38:34 2005
@@ -33,7 +33,8 @@ my %platforms = map {$_=>1} qw/
/;
if ($platforms{$^O}) {
- plan tests => 3;
+ #plan tests => 3;
+ plan skip_all => 'Signals currently diabled';
}
else {
plan skip_all => 'No events yet';