You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by cc...@apache.org on 2008/09/30 18:17:22 UTC

svn commit: r700518 - /incubator/qpid/trunk/qpid/cpp/src/tests/QueueTest.cpp

Author: cctrieloff
Date: Tue Sep 30 09:17:22 2008
New Revision: 700518

URL: http://svn.apache.org/viewvc?rev=700518&view=rev
Log:
QPID-1306

- resolve symbols for some platforms, between two tests


Modified:
    incubator/qpid/trunk/qpid/cpp/src/tests/QueueTest.cpp

Modified: incubator/qpid/trunk/qpid/cpp/src/tests/QueueTest.cpp
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/tests/QueueTest.cpp?rev=700518&r1=700517&r2=700518&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/tests/QueueTest.cpp (original)
+++ incubator/qpid/trunk/qpid/cpp/src/tests/QueueTest.cpp Tue Sep 30 09:17:22 2008
@@ -268,7 +268,7 @@
 
 }
 
-class TestMessageStore : public NullMessageStore
+class TestMessageStoreOC : public NullMessageStore
 {
   public:
     
@@ -284,8 +284,8 @@
     {
     }
 
-    TestMessageStore() : NullMessageStore(false) {}
-    ~TestMessageStore(){}
+    TestMessageStoreOC() : NullMessageStore(false) {}
+    ~TestMessageStoreOC(){}
 };
 
 
@@ -296,7 +296,7 @@
 
     // set queue mode
 	
-	TestMessageStore store;
+	TestMessageStoreOC store;
 	Queue::shared_ptr queue(new Queue("my-queue", true, &store));
 	queue->setLastNodeFailure();