]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/events/timertest.cpp
Add wxAutomationInstance_SilentIfNone flag for wxMSW OLE code.
[wxWidgets.git] / tests / events / timertest.cpp
index 48553a271a3dd84dda0c72f233cc5eeb4cde9363..d8baaf8abcd87ecedadd761bbf0065dccd382c99 100644 (file)
 #include "wx/evtloop.h"
 #include "wx/timer.h"
 
+// --------------------------------------------------------------------------
 // helper class counting the number of timer events
+// --------------------------------------------------------------------------
+
 class TimerCounterHandler : public wxEvtHandler
 {
 public:
@@ -112,6 +115,10 @@ void TimerEventTestCase::OneShot()
 
 void TimerEventTestCase::Multiple()
 {
+    // FIXME: This test crashes on wxGTK ANSI build slave for unknown reason,
+    //        disable it here to let the rest of the test suite run until this
+    //        can be fixed.
+#if !defined(__WXGTK__) || wxUSE_UNICODE
     wxEventLoop loop;
 
     TimerCounterHandler handler;
@@ -137,4 +144,5 @@ void TimerEventTestCase::Multiple()
     // parallel actually) it may be much less than 20 so just check that we get
     // more than one
     CPPUNIT_ASSERT( numTicks > 1 );
+#endif // !(wxGTK Unicode)
 }