diff --git a/tests/test.cpp b/tests/test.cpp index ca92abb885..55f741af62 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -541,6 +541,7 @@ bool TestApp::OnInit() if ( !TestAppBase::OnInit() ) return false; + // Output some important information about the test environment. #if wxUSE_GUI cout << "Test program for wxWidgets GUI features\n" #else @@ -548,15 +549,15 @@ bool TestApp::OnInit() #endif << "build: " << WX_BUILD_OPTIONS_SIGNATURE << "\n" << "running under " << wxGetOsDescription() - << " as " << wxGetUserId() << std::endl; + << " as " << wxGetUserId(); if ( m_detail ) { - // Output some important information about the test environment. - cout << "Running under " << wxGetOsDescription() << ", " - "locale is " << setlocale(LC_ALL, NULL) << std::endl; + cout << ", locale is " << setlocale(LC_ALL, NULL); } + cout << std::endl; + #if wxUSE_GUI // create a hidden parent window to be used as parent for the GUI controls wxTestableFrame* frame = new wxTestableFrame();