--- AnyEvent/t/61_fltk_09_multi.t 2011/08/12 18:41:27 1.1 +++ AnyEvent/t/61_fltk_09_multi.t 2011/08/27 15:59:12 1.4 @@ -14,11 +14,13 @@ } } +$^W = 0; # 5.8.6 bugs + use AnyEvent; use AnyEvent::Util; BEGIN { $ENV{PERL_ANYEVENT_LOOP_TESTS} or ((print qq{1..0 # SKIP PERL_ANYEVENT_LOOP_TESTS not true\n}), exit 0) } - BEGIN { eval q{use AnyEvent::Impl::FLTK2;1} or ((print qq{1..0 # SKIP AnyEvent::Impl::FLTK2 not loadable\n}), exit 0) } + BEGIN { eval q{use AnyEvent::Impl::FLTK;1} or ((print qq{1..0 # SKIP AnyEvent::Impl::FLTK not loadable\n}), exit 0) } @@ -94,7 +96,7 @@ kill INT => $$; $cv = AE::cv; - $wt = AE::timer 0.01, 0, $cv; + $wt = AE::timer 0.1, 0, $cv; # maybe OS X needs more time here? $s = 0; $cv->recv; @@ -137,7 +139,7 @@ kill 9, $pid; $cv = AE::cv; - $wt = AE::timer 0.01, 0, $cv; + $wt = AE::timer 0.2, 0, $cv; # cygwin needs ages for this $s = 0; $cv->recv;