]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/test.cpp
use wxVector<T> instead of wxList in wxXmlResource code
[wxWidgets.git] / tests / test.cpp
index b26e73317f0e682dd3cf0ae5d457f2aa50581537..00c21251f20fd107b2dd09ff9a59c045fd6a6cb4 100644 (file)
@@ -70,6 +70,14 @@ bool TestApp::OnInit()
 {
     cout << "Test program for wxWidgets\n"
          << "build: " << WX_BUILD_OPTIONS_SIGNATURE << std::endl;
+
+#if !wxUSE_WXVSNPRINTF
+    cout << "\n";
+    cout << "WARNING: VsnprintfTestCase will test the system vsnprintf() function\n";
+    cout << "         instead of the wxWidgets wxVsnprintf_ implementation!" << std::endl;
+    cout << "\n";
+#endif
+
     return wxAppConsole::OnInit();
 };
 
@@ -86,9 +94,9 @@ void TestApp::OnInitCmdLine(wxCmdLineParser& parser)
         { wxCMD_LINE_SWITCH, _T("L"), _T("longlist"),
             _T("list the test cases, do not run them"),
             wxCMD_LINE_VAL_NONE, 0 },
-        { wxCMD_LINE_PARAM, 0, 0, _T("REGISTRY"), wxCMD_LINE_VAL_STRING,
+        { wxCMD_LINE_PARAM, "", "", _T("REGISTRY"), wxCMD_LINE_VAL_STRING,
             wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE },
-        { wxCMD_LINE_NONE , 0, 0, 0, wxCMD_LINE_VAL_NONE, 0 }
+        { wxCMD_LINE_NONE , "", "", "", wxCMD_LINE_VAL_NONE, 0 }
     };
 
     parser.SetDesc(cmdLineDesc);