]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/console/console.cpp
10.2 fixes
[wxWidgets.git] / samples / console / console.cpp
index 76c7cef46ae1340c63618e49075fb56b788d5e61..fd27e29a1b6f4d59cc2eb18c9a94ebd75fbb1f2f 100644 (file)
@@ -3761,6 +3761,9 @@ static void TestZipFileSystem()
 #include "wx/datetime.h"
 
 // this test miscellaneous static wxDateTime functions
+
+#if TEST_ALL
+
 static void TestTimeStatic()
 {
     wxPuts(_T("\n*** wxDateTime static methods test ***"));
@@ -3839,6 +3842,10 @@ static void TestTimeDST()
     }
 }
 
+#endif // TEST_ALL
+
+#if TEST_INTERACTIVE
+
 static void TestDateTimeInteractive()
 {
     wxPuts(_T("\n*** interactive wxDateTime tests ***"));
@@ -3878,6 +3885,10 @@ static void TestDateTimeInteractive()
     wxPuts(_T("\n*** done ***"));
 }
 
+#endif // TEST_INTERACTIVE
+
+#if TEST_ALL
+
 static void TestTimeMS()
 {
     wxPuts(_T("*** testing millisecond-resolution support in wxDateTime ***"));
@@ -3979,6 +3990,8 @@ static void TestTimeSpanFormat()
     wxPuts(wxEmptyString);
 }
 
+#endif // TEST_ALL
+
 #endif // TEST_DATETIME
 
 // ----------------------------------------------------------------------------