#define TEST_STACKWALKER
#define TEST_STDPATHS
#define TEST_STREAMS
- #define TEST_TIMER
-// #define TEST_VOLUME --FIXME! (RN)
#else // #if TEST_ALL
#define TEST_DATETIME
+ #define TEST_VOLUME
#endif
// some tests are interactive, define this to run them
#endif // TEST_STREAMS
-// ----------------------------------------------------------------------------
-// timers
-// ----------------------------------------------------------------------------
-
-#ifdef TEST_TIMER
-
-#include "wx/stopwatch.h"
-#include "wx/utils.h"
-
-static void TestStopWatch()
-{
- wxPuts(wxT("*** Testing wxStopWatch ***\n"));
-
- wxStopWatch sw;
- sw.Pause();
- wxPrintf(wxT("Initially paused, after 2 seconds time is..."));
- fflush(stdout);
- wxSleep(2);
- wxPrintf(wxT("\t%ldms\n"), sw.Time());
-
- wxPrintf(wxT("Resuming stopwatch and sleeping 3 seconds..."));
- fflush(stdout);
- sw.Resume();
- wxSleep(3);
- wxPrintf(wxT("\telapsed time: %ldms\n"), sw.Time());
-
- sw.Pause();
- wxPrintf(wxT("Pausing agan and sleeping 2 more seconds..."));
- fflush(stdout);
- wxSleep(2);
- wxPrintf(wxT("\telapsed time: %ldms\n"), sw.Time());
-
- sw.Resume();
- wxPrintf(wxT("Finally resuming and sleeping 2 more seconds..."));
- fflush(stdout);
- wxSleep(2);
- wxPrintf(wxT("\telapsed time: %ldms\n"), sw.Time());
-
- wxStopWatch sw2;
- wxPuts(wxT("\nChecking for 'backwards clock' bug..."));
- for ( size_t n = 0; n < 70; n++ )
- {
- sw2.Start();
-
- for ( size_t m = 0; m < 100000; m++ )
- {
- if ( sw.Time() < 0 || sw2.Time() < 0 )
- {
- wxPuts(wxT("\ntime is negative - ERROR!"));
- }
- }
-
- wxPutchar('.');
- fflush(stdout);
- }
-
- wxPuts(wxT(", ok."));
-}
-
-#include "wx/timer.h"
-#include "wx/evtloop.h"
-
-void TestTimer()
-{
- wxPuts(wxT("*** Testing wxTimer ***\n"));
-
- class MyTimer : public wxTimer
- {
- public:
- MyTimer() : wxTimer() { m_num = 0; }
-
- virtual void Notify()
- {
- wxPrintf(wxT("%d"), m_num++);
- fflush(stdout);
-
- if ( m_num == 10 )
- {
- wxPrintf(wxT("... exiting the event loop"));
- Stop();
-
- wxEventLoop::GetActive()->Exit(0);
- wxPuts(wxT(", ok."));
- }
-
- fflush(stdout);
- }
-
- private:
- int m_num;
- };
-
- wxEventLoop loop;
-
- wxTimer timer1;
- timer1.Start(100, true /* one shot */);
- timer1.Stop();
- timer1.Start(100, true /* one shot */);
-
- MyTimer timer;
- timer.Start(500);
-
- loop.Run();
-}
-
-#endif // TEST_TIMER
-
// ----------------------------------------------------------------------------
// wxVolume tests
// ----------------------------------------------------------------------------
TestMemoryStream();
#endif // TEST_STREAMS
-#ifdef TEST_TIMER
- TestStopWatch();
- TestTimer();
-#endif // TEST_TIMER
-
#ifdef TEST_DATETIME
#if TEST_INTERACTIVE
TestDateTimeInteractive();
test_datetimetest.o \
test_evthandler.o \
test_evtsource.o \
+ test_stopwatch.o \
test_timertest.o \
test_exec.o \
test_filetest.o \
test_evtsource.o: $(srcdir)/events/evtsource.cpp $(TEST_ODEP)
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/events/evtsource.cpp
+test_stopwatch.o: $(srcdir)/events/stopwatch.cpp $(TEST_ODEP)
+ $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/events/stopwatch.cpp
+
test_timertest.o: $(srcdir)/events/timertest.cpp $(TEST_ODEP)
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/events/timertest.cpp
--- /dev/null
+///////////////////////////////////////////////////////////////////////////////
+// Name: tests/events/stopwatch.cpp
+// Purpose: Test wxStopWatch class
+// Author: Francesco Montorsi (extracted from console sample)
+// Created: 2010-05-16
+// RCS-ID: $Id$
+// Copyright: (c) 2010 wxWidgets team
+///////////////////////////////////////////////////////////////////////////////
+
+
+// ----------------------------------------------------------------------------
+// headers
+// ----------------------------------------------------------------------------
+
+#include "testprec.h"
+
+#ifdef __BORLANDC__
+ #pragma hdrstop
+#endif
+
+#ifndef WX_PRECOMP
+#endif // WX_PRECOMP
+
+#include <time.h>
+
+#include "wx/stopwatch.h"
+#include "wx/utils.h"
+
+// --------------------------------------------------------------------------
+// test class
+// --------------------------------------------------------------------------
+
+class StopWatchTestCase : public CppUnit::TestCase
+{
+public:
+ StopWatchTestCase() {}
+
+private:
+ CPPUNIT_TEST_SUITE( StopWatchTestCase );
+ CPPUNIT_TEST( Misc );
+ CPPUNIT_TEST( BackwardsClockBug );
+ CPPUNIT_TEST_SUITE_END();
+
+ void Misc();
+ void BackwardsClockBug();
+
+ DECLARE_NO_COPY_CLASS(StopWatchTestCase)
+};
+
+// register in the unnamed registry so that these tests are run by default
+CPPUNIT_TEST_SUITE_REGISTRATION( StopWatchTestCase );
+
+// also include in it's own registry so that these tests can be run alone
+CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( StopWatchTestCase, "StopWatchTestCase" );
+
+void StopWatchTestCase::Misc()
+{
+ wxStopWatch sw;
+ long tmp;
+
+ sw.Pause(); // pause it immediately
+
+ wxSleep(2);
+ tmp = sw.Time();
+ CPPUNIT_ASSERT(tmp >= 0 && tmp < 100);
+ // should not have counted while paused!
+
+ sw.Resume();
+ wxSleep(3);
+ tmp = sw.Time();
+ CPPUNIT_ASSERT(tmp >= 3000 && tmp < 4000);
+
+ sw.Pause();
+ sw.Resume();
+
+ wxSleep(2);
+ tmp = sw.Time();
+ CPPUNIT_ASSERT(tmp >= 5000 && tmp < 6000);
+}
+
+void StopWatchTestCase::BackwardsClockBug()
+{
+ wxStopWatch sw;
+ wxStopWatch sw2;
+
+ for ( size_t n = 0; n < 10; n++ )
+ {
+ sw2.Start();
+
+ for ( size_t m = 0; m < 10000; m++ )
+ {
+ CPPUNIT_ASSERT ( sw.Time() >= 0 && sw2.Time() >= 0 );
+ }
+ }
+}
#include "wx/evtloop.h"
#include "wx/timer.h"
+// --------------------------------------------------------------------------
// helper class counting the number of timer events
+// --------------------------------------------------------------------------
+
class TimerCounterHandler : public wxEvtHandler
{
public:
$(OBJS)\test_datetimetest.obj \\r
$(OBJS)\test_evthandler.obj \\r
$(OBJS)\test_evtsource.obj \\r
+ $(OBJS)\test_stopwatch.obj \\r
$(OBJS)\test_timertest.obj \\r
$(OBJS)\test_exec.obj \\r
$(OBJS)\test_filetest.obj \\r
$(OBJS)\test_evtsource.obj: .\events\evtsource.cpp\r
$(CXX) -q -c -P -o$@ $(TEST_CXXFLAGS) .\events\evtsource.cpp\r
\r
+$(OBJS)\test_stopwatch.obj: .\events\stopwatch.cpp\r
+ $(CXX) -q -c -P -o$@ $(TEST_CXXFLAGS) .\events\stopwatch.cpp\r
+\r
$(OBJS)\test_timertest.obj: .\events\timertest.cpp\r
$(CXX) -q -c -P -o$@ $(TEST_CXXFLAGS) .\events\timertest.cpp\r
\r
$(OBJS)\test_datetimetest.o \\r
$(OBJS)\test_evthandler.o \\r
$(OBJS)\test_evtsource.o \\r
+ $(OBJS)\test_stopwatch.o \\r
$(OBJS)\test_timertest.o \\r
$(OBJS)\test_exec.o \\r
$(OBJS)\test_filetest.o \\r
$(OBJS)\test_evtsource.o: ./events/evtsource.cpp\r
$(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<\r
\r
+$(OBJS)\test_stopwatch.o: ./events/stopwatch.cpp\r
+ $(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<\r
+\r
$(OBJS)\test_timertest.o: ./events/timertest.cpp\r
$(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<\r
\r
$(OBJS)\test_datetimetest.obj \\r
$(OBJS)\test_evthandler.obj \\r
$(OBJS)\test_evtsource.obj \\r
+ $(OBJS)\test_stopwatch.obj \\r
$(OBJS)\test_timertest.obj \\r
$(OBJS)\test_exec.obj \\r
$(OBJS)\test_filetest.obj \\r
$(OBJS)\test_evtsource.obj: .\events\evtsource.cpp\r
$(CXX) /c /nologo /TP /Fo$@ $(TEST_CXXFLAGS) .\events\evtsource.cpp\r
\r
+$(OBJS)\test_stopwatch.obj: .\events\stopwatch.cpp\r
+ $(CXX) /c /nologo /TP /Fo$@ $(TEST_CXXFLAGS) .\events\stopwatch.cpp\r
+\r
$(OBJS)\test_timertest.obj: .\events\timertest.cpp\r
$(CXX) /c /nologo /TP /Fo$@ $(TEST_CXXFLAGS) .\events\timertest.cpp\r
\r
$(OBJS)\test_datetimetest.obj &\r
$(OBJS)\test_evthandler.obj &\r
$(OBJS)\test_evtsource.obj &\r
+ $(OBJS)\test_stopwatch.obj &\r
$(OBJS)\test_timertest.obj &\r
$(OBJS)\test_exec.obj &\r
$(OBJS)\test_filetest.obj &\r
$(OBJS)\test_evtsource.obj : .AUTODEPEND .\events\evtsource.cpp\r
$(CXX) -bt=nt -zq -fo=$^@ $(TEST_CXXFLAGS) $<\r
\r
+$(OBJS)\test_stopwatch.obj : .AUTODEPEND .\events\stopwatch.cpp\r
+ $(CXX) -bt=nt -zq -fo=$^@ $(TEST_CXXFLAGS) $<\r
+\r
$(OBJS)\test_timertest.obj : .AUTODEPEND .\events\timertest.cpp\r
$(CXX) -bt=nt -zq -fo=$^@ $(TEST_CXXFLAGS) $<\r
\r
datetime/datetimetest.cpp
events/evthandler.cpp
events/evtsource.cpp
+ events/stopwatch.cpp
events/timertest.cpp
exec/exec.cpp
file/filetest.cpp
# End Source File\r
# Begin Source File\r
\r
+SOURCE=.\events\stopwatch.cpp\r
+# End Source File\r
+# Begin Source File\r
+\r
SOURCE=.\strings\strings.cpp\r
# End Source File\r
# Begin Source File\r
<File\r
RelativePath=".\strings\stdstrings.cpp">\r
</File>\r
+ <File\r
+ RelativePath=".\events\stopwatch.cpp">\r
+ </File>\r
<File\r
RelativePath=".\strings\strings.cpp">\r
</File>\r
RelativePath=".\strings\stdstrings.cpp"\r
>\r
</File>\r
+ <File\r
+ RelativePath=".\events\stopwatch.cpp"\r
+ >\r
+ </File>\r
<File\r
RelativePath=".\strings\strings.cpp"\r
>\r
<?xml version="1.0" encoding="Windows-1252"?>\r
+<!--\r
+\r
+ This project was generated by\r
+ Bakefile 0.2.8 (http://www.bakefile.org)\r
+ Do not modify, all changes will be overwritten!\r
+\r
+-->\r
<VisualStudioProject\r
ProjectType="Visual C++"\r
- Version="9,00"\r
+ Version="9.00"\r
Name="test"\r
ProjectGUID="{2F45723C-ED6B-5F60-8BFF-6B3609464A7B}"\r
- TargetFrameworkVersion="0"\r
>\r
<Platforms>\r
<Platform\r
/>\r
</Platforms>\r
<ToolFiles>\r
+ \r
</ToolFiles>\r
<Configurations>\r
<Configuration\r
Name="VCCLCompilerTool"\r
AdditionalOptions="/MP"\r
Optimization="0"\r
- AdditionalIncludeDirectories=".\..\lib\vc_lib\mswud;.\..\include;.;F:\cppunit\include"\r
+ AdditionalIncludeDirectories=".\..\lib\vc_lib\mswud;.\..\include;."\r
PreprocessorDefinitions="WIN32;_DEBUG;__WXMSW__;_UNICODE;_CONSOLE;wxUSE_GUI=0"\r
ExceptionHandling="1"\r
BasicRuntimeChecks="3"\r
OutputFile="vc_mswud\test.exe"\r
LinkIncremental="2"\r
SuppressStartupBanner="true"\r
- AdditionalLibraryDirectories=".\..\lib\vc_lib;F:\cppunit\lib"\r
+ AdditionalLibraryDirectories=".\..\lib\vc_lib"\r
GenerateManifest="true"\r
GenerateDebugInformation="true"\r
ProgramDatabaseFile="vc_mswud\test.pdb"\r
/>\r
<Tool\r
Name="VCBscMakeTool"\r
- SuppressStartupBanner="true"\r
OutputFile="vc_mswud\test_vc9_test.bsc"\r
+ SuppressStartupBanner="true"\r
/>\r
<Tool\r
Name="VCFxCopTool"\r
GenerateDebugInformation="true"\r
ProgramDatabaseFile="vc_mswu\test.pdb"\r
SubSystem="1"\r
+ TargetMachine="1"\r
OptimizeReferences="2"\r
EnableCOMDATFolding="2"\r
- TargetMachine="1"\r
/>\r
<Tool\r
Name="VCALinkTool"\r
/>\r
<Tool\r
Name="VCBscMakeTool"\r
- SuppressStartupBanner="true"\r
OutputFile="vc_mswu\test_vc9_test.bsc"\r
+ SuppressStartupBanner="true"\r
/>\r
<Tool\r
Name="VCFxCopTool"\r
/>\r
<Tool\r
Name="VCBscMakeTool"\r
- SuppressStartupBanner="true"\r
OutputFile="vc_mswunivud\test_vc9_test.bsc"\r
+ SuppressStartupBanner="true"\r
/>\r
<Tool\r
Name="VCFxCopTool"\r
GenerateDebugInformation="true"\r
ProgramDatabaseFile="vc_mswunivu\test.pdb"\r
SubSystem="1"\r
+ TargetMachine="1"\r
OptimizeReferences="2"\r
EnableCOMDATFolding="2"\r
- TargetMachine="1"\r
/>\r
<Tool\r
Name="VCALinkTool"\r
/>\r
<Tool\r
Name="VCBscMakeTool"\r
- SuppressStartupBanner="true"\r
OutputFile="vc_mswunivu\test_vc9_test.bsc"\r
+ SuppressStartupBanner="true"\r
/>\r
<Tool\r
Name="VCFxCopTool"\r
/>\r
<Tool\r
Name="VCBscMakeTool"\r
- SuppressStartupBanner="true"\r
OutputFile="vc_mswuddll\test_vc9_test.bsc"\r
+ SuppressStartupBanner="true"\r
/>\r
<Tool\r
Name="VCFxCopTool"\r
GenerateDebugInformation="true"\r
ProgramDatabaseFile="vc_mswudll\test.pdb"\r
SubSystem="1"\r
+ TargetMachine="1"\r
OptimizeReferences="2"\r
EnableCOMDATFolding="2"\r
- TargetMachine="1"\r
/>\r
<Tool\r
Name="VCALinkTool"\r
/>\r
<Tool\r
Name="VCBscMakeTool"\r
- SuppressStartupBanner="true"\r
OutputFile="vc_mswudll\test_vc9_test.bsc"\r
+ SuppressStartupBanner="true"\r
/>\r
<Tool\r
Name="VCFxCopTool"\r
/>\r
<Tool\r
Name="VCBscMakeTool"\r
- SuppressStartupBanner="true"\r
OutputFile="vc_mswunivuddll\test_vc9_test.bsc"\r
+ SuppressStartupBanner="true"\r
/>\r
<Tool\r
Name="VCFxCopTool"\r
GenerateDebugInformation="true"\r
ProgramDatabaseFile="vc_mswunivudll\test.pdb"\r
SubSystem="1"\r
+ TargetMachine="1"\r
OptimizeReferences="2"\r
EnableCOMDATFolding="2"\r
- TargetMachine="1"\r
/>\r
<Tool\r
Name="VCALinkTool"\r
/>\r
<Tool\r
Name="VCBscMakeTool"\r
- SuppressStartupBanner="true"\r
OutputFile="vc_mswunivudll\test_vc9_test.bsc"\r
+ SuppressStartupBanner="true"\r
/>\r
<Tool\r
Name="VCFxCopTool"\r
</Configuration>\r
</Configurations>\r
<References>\r
+ \r
</References>\r
<Files>\r
<Filter\r
RelativePath=".\strings\stdstrings.cpp"\r
>\r
</File>\r
+ <File\r
+ RelativePath=".\events\stopwatch.cpp"\r
+ >\r
+ </File>\r
<File\r
RelativePath=".\strings\strings.cpp"\r
>\r
</Filter>\r
</Files>\r
<Globals>\r
+ \r
</Globals>\r
</VisualStudioProject>\r
+\r