X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f1287154cde58f6c7d0c4425b1e1d3193ee9abef..cd15bcaf50ead53ccf9d50965312f0dc754affb4:/tests/test.cpp diff --git a/tests/test.cpp b/tests/test.cpp index 155bfdf154..cdb57c535a 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -165,7 +165,7 @@ static string GetExceptionMessage() throw; } #if wxDEBUG_LEVEL - catch ( TestAssertFailure& e ) + catch ( TestAssertFailure& ) { msg = s_lastAssertMessage; s_lastAssertMessage.clear(); @@ -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,16 @@ 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 ) + { + // Output some important information about the test environment. + cout << "Running under " << wxGetOsDescription() << ", " + "locale is " << setlocale(LC_ALL, NULL) << std::endl; + } #if wxUSE_GUI // create a hidden parent window to be used as parent for the GUI controls