summaryrefslogtreecommitdiff
path: root/ACE/tests/Bug_2497_Regression_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Bug_2497_Regression_Test.cpp')
-rw-r--r--ACE/tests/Bug_2497_Regression_Test.cpp71
1 files changed, 71 insertions, 0 deletions
diff --git a/ACE/tests/Bug_2497_Regression_Test.cpp b/ACE/tests/Bug_2497_Regression_Test.cpp
new file mode 100644
index 00000000000..b0c89442fc2
--- /dev/null
+++ b/ACE/tests/Bug_2497_Regression_Test.cpp
@@ -0,0 +1,71 @@
+/**
+ * @file Bug_2497_Regression_Test.cpp
+ *
+ * $Id$
+ *
+ * Reproduces the problems reported in bug 2497
+ * http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=2497
+ *
+ * @author sergant128@mail.ru
+ */
+
+#include "test_config.h"
+#include "ace/Module.h"
+#include "ace/Task.h"
+#include "ace/Stream.h"
+
+class Test_Task : public ACE_Task<ACE_SYNCH>
+{
+public:
+ Test_Task( void ) :
+ _destructorCalled(0)
+ {
+ }
+
+ virtual ~Test_Task( void )
+ {
+ ++_destructorCalled;
+ if (_destructorCalled > 1)
+ ACE_ERROR ((LM_ERROR,
+ ACE_TEXT ("Test_Task::~Test_Task() should be called once!!!\n")));
+ }
+
+private:
+ int _destructorCalled;
+};
+
+
+class Test_Module : public ACE_Module<ACE_SYNCH>
+{
+public:
+ Test_Module( void )
+ {
+ this->open( ACE_TEXT("Test module"),
+ &_writerTask,
+ &_readerTask,
+ 0,
+ M_DELETE_NONE );
+ }
+
+private:
+ Test_Task _writerTask, _readerTask;
+};
+
+
+int
+run_main (int, ACE_TCHAR *[])
+{
+ ACE_START_TEST (ACE_TEXT ("Bug_2497_Regression_Test"));
+
+ ACE_Stream<ACE_SYNCH> stream;
+
+ if (stream.push(new Test_Module()) == -1)
+ {
+ ACE_ERROR ((LM_ERROR,
+ ACE_TEXT ("Error: push failed\n")));
+ }
+
+ ACE_END_TEST;
+
+ return 0;
+}