X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c66bfe457c0af0ee1d4aeee5d34a05a0a0a3a1ff..a640295faab118deee570776f5a752c5056c0aad:/tests/test.cpp diff --git a/tests/test.cpp b/tests/test.cpp index 6619dd21c5..9f304346b4 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -423,7 +423,9 @@ extern bool IsAutomaticTest() if ( !wxGetEnv("WX_TEST_USER", &username) ) username = wxGetUserId(); - s_isAutomatic = username.Lower().Matches("buildslave*"); + username.MakeLower(); + s_isAutomatic = username.Matches("buildslave*") || + username.Matches("sandbox*"); } return s_isAutomatic == 1; @@ -477,7 +479,9 @@ bool TestApp::OnInit() #else cout << "Test program for wxWidgets non-GUI features\n" #endif - << "build: " << WX_BUILD_OPTIONS_SIGNATURE << std::endl; + << "build: " << WX_BUILD_OPTIONS_SIGNATURE << "\n" + << "running under " << wxGetOsDescription() + << " as " << wxGetUserId() << std::endl; if ( m_detail ) { @@ -493,6 +497,14 @@ bool TestApp::OnInit() m_eventloop = new wxEventLoop; wxEventLoop::SetActive(m_eventloop); + +#ifdef __WXOSX__ + // we need to wait until the window is activated and fully ready + // otherwise no events can be posted + m_eventloop->DispatchTimeout(1000); + m_eventloop->Yield(); +#endif + #endif // wxUSE_GUI return true;