summaryrefslogtreecommitdiff
path: root/tests/Timeprobe_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Timeprobe_Test.cpp')
-rw-r--r--tests/Timeprobe_Test.cpp91
1 files changed, 0 insertions, 91 deletions
diff --git a/tests/Timeprobe_Test.cpp b/tests/Timeprobe_Test.cpp
deleted file mode 100644
index 879ba85a06e..00000000000
--- a/tests/Timeprobe_Test.cpp
+++ /dev/null
@@ -1,91 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// tests
-//
-// = FILENAME
-// Timeprobe_Test.cpp
-//
-// = DESCRIPTION
-// This is a simple test of Timeprobes.
-//
-// = AUTHOR
-// Irfan Pyarali
-//
-// ============================================================================
-
-#if !defined (ACE_ENABLE_TIMEPROBES)
-# define ACE_ENABLE_TIMEPROBES
-#endif /* ! ACE_ENABLE_TIMEPROBES */
-
-#if !defined (ACE_COMPILE_TIMEPROBES)
- // #include Timeprobe.cpp so that we get any necessary template
- // instantiations.
-# define ACE_COMPILE_TIMEPROBES
-# include "ace/Timeprobe.cpp"
-#endif /* ! ACE_COMPILE_TIMEPROBES */
-
-//#define ACE_MT_TIMEPROBES
-//#define ACE_TSS_TIMEPROBES
-
-#include "tests/test_config.h"
-#include "ace/Timeprobe.h"
-
-#if defined(__BORLANDC__) && __BORLANDC__ >= 0x0530
-USELIB("..\ace\aced.lib");
-//---------------------------------------------------------------------------
-#endif /* defined(__BORLANDC__) && __BORLANDC__ >= 0x0530 */
-
-static const char *events_descriptions_0[] =
-{
- "Event Zero",
- "Event One",
- "Event Two",
- "Event Three",
- "Event Four",
- "Event Five",
- "Event Six",
- "Event Seven",
- "Event Eight",
- "Event Nine",
-};
-
-static const char *events_descriptions_1[] =
-{
- "Work start",
- "Work end"
-};
-
-static void
-work (int time)
-{
- ACE_FUNCTION_TIMEPROBE (100);
- ACE_OS::sleep (time);
-}
-
-int
-main (int, ASYS_TCHAR *[])
-{
- ACE_START_TEST (ASYS_TEXT ("Timeprobe_Test"));
-
- ACE_TIMEPROBE ("Staring Test");
-
- for (int i = 1; i < 3; i++)
- {
- work (i);
- ACE_TIMEPROBE (i);
- }
-
- ACE_TIMEPROBE ("Ending Test");
-
- ACE_TIMEPROBE_EVENT_DESCRIPTIONS (events_descriptions_1, 100);
- ACE_TIMEPROBE_EVENT_DESCRIPTIONS (events_descriptions_0, 0);
-
- ACE_TIMEPROBE_PRINT;
-
- ACE_END_TEST;
-
- return 0;
-}