X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e3778b4d9c7eebc39f496a9dd055638e06fb9140..c2f8c2b245959f612f0ebac31ab8d80bef6ea9e2:/tests/validators/valnum.cpp diff --git a/tests/validators/valnum.cpp b/tests/validators/valnum.cpp index dd2d0e9835..0a2421588b 100644 --- a/tests/validators/valnum.cpp +++ b/tests/validators/valnum.cpp @@ -3,7 +3,6 @@ // Purpose: Unit tests for numeric validators. // Author: Vadim Zeitlin // Created: 2011-01-18 -// RCS-ID: $Id$ // Copyright: (c) 2011 Vadim Zeitlin /////////////////////////////////////////////////////////////////////////////// @@ -204,11 +203,13 @@ void NumValidatorTestCase::NoTrailingZeroes() void NumValidatorTestCase::Interactive() { +#ifdef __WXMSW__ // FIXME: This test fails on MSW buildbot slaves although works fine on // development machine, no idea why. It seems to be a problem with // wxUIActionSimulator rather the wxListCtrl control itself however. - if ( wxGetUserId().Lower().Matches("buildslave*") ) + if ( IsAutomaticTest() ) return; +#endif // __WXMSW__ // Set a locale using comma as thousands separator character. wxLocale loc(wxLANGUAGE_ENGLISH_UK, wxLOCALE_DONT_LOAD_DEFAULT);