X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9de31412ed470c6fd0bd289dabf85e181ab55803..cd15bcaf50ead53ccf9d50965312f0dc754affb4:/tests/test.cpp?ds=sidebyside diff --git a/tests/test.cpp b/tests/test.cpp index 5225ce76b1..cdb57c535a 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; @@ -472,14 +474,14 @@ bool TestApp::OnInit() if ( !TestAppBase::OnInit() ) return false; - SetCLocale(); - #if wxUSE_GUI cout << "Test program for wxWidgets GUI features\n" #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 ) {