summaryrefslogtreecommitdiff
path: root/tests/Main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Main.cpp')
-rw-r--r--tests/Main.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/Main.cpp b/tests/Main.cpp
new file mode 100644
index 00000000000..eedc0041b8d
--- /dev/null
+++ b/tests/Main.cpp
@@ -0,0 +1,28 @@
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// tests
+//
+// = FILENAME
+// Main.cpp
+//
+// = DESCRIPTION
+// This is a wrapper for the test programs. It obviates the test cpp's
+// from having to always include OS.h.
+//
+// = AUTHOR
+// Don Hinton <dhinton@dresystems.com>
+//
+// ============================================================================
+
+#include "ace/OS.h"
+
+int run_main (int argc, ACE_TCHAR *argv[]);
+
+int
+ACE_TMAIN (int argc, ACE_TCHAR *argv[])
+{
+ return run_main (argc, argv);
+}