Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 19943 invoked from network); 29 Mar 2010 13:33:16 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 29 Mar 2010 13:33:16 -0000 Received: (qmail 18486 invoked by uid 500); 29 Mar 2010 13:33:16 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 18449 invoked by uid 500); 29 Mar 2010 13:33:16 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 18442 invoked by uid 99); 29 Mar 2010 13:33:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Mar 2010 13:33:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Mar 2010 13:33:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0A65523889DE; Mon, 29 Mar 2010 13:32:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r928770 [3/6] - in /activemq/activemq-cpp/trunk/activemq-cpp/src: main/decaf/io/ test/activemq/wireformat/openwire/marshal/v1/ test/activemq/wireformat/openwire/marshal/v2/ test/activemq/wireformat/openwire/marshal/v3/ test/activemq/wirefor... Date: Mon, 29 Mar 2010 13:32:38 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100329133243.0A65523889DE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ConsumerIdMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ConsumerIdMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ConsumerIdMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ConsumerIdMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ConsumerIdMarshallerTest::testLoose marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ConsumerIdMarshallerTest::testTight marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ConsumerInfoMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ConsumerInfoMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ConsumerInfoMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ConsumerInfoMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ConsumerInfoMarshallerTest::testLoo marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ConsumerInfoMarshallerTest::testTig marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ControlCommandMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ControlCommandMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ControlCommandMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ControlCommandMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ControlCommandMarshallerTest::testL marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ControlCommandMarshallerTest::testT marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DataArrayResponseMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DataArrayResponseMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DataArrayResponseMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DataArrayResponseMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void DataArrayResponseMarshallerTest::te marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void DataArrayResponseMarshallerTest::te marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DataResponseMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DataResponseMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DataResponseMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DataResponseMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void DataResponseMarshallerTest::testLoo marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void DataResponseMarshallerTest::testTig marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DestinationInfoMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DestinationInfoMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DestinationInfoMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DestinationInfoMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void DestinationInfoMarshallerTest::test marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void DestinationInfoMarshallerTest::test marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DiscoveryEventMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DiscoveryEventMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DiscoveryEventMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/DiscoveryEventMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void DiscoveryEventMarshallerTest::testL marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void DiscoveryEventMarshallerTest::testT marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ExceptionResponseMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ExceptionResponseMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ExceptionResponseMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ExceptionResponseMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ExceptionResponseMarshallerTest::te marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ExceptionResponseMarshallerTest::te marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/FlushCommandMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/FlushCommandMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/FlushCommandMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/FlushCommandMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void FlushCommandMarshallerTest::testLoo marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void FlushCommandMarshallerTest::testTig marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/IntegerResponseMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/IntegerResponseMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/IntegerResponseMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/IntegerResponseMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void IntegerResponseMarshallerTest::test marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void IntegerResponseMarshallerTest::test marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalQueueAckMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalQueueAckMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalQueueAckMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalQueueAckMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void JournalQueueAckMarshallerTest::test marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void JournalQueueAckMarshallerTest::test marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalTopicAckMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalTopicAckMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalTopicAckMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalTopicAckMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void JournalTopicAckMarshallerTest::test marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void JournalTopicAckMarshallerTest::test marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalTraceMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalTraceMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalTraceMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalTraceMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void JournalTraceMarshallerTest::testLoo marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void JournalTraceMarshallerTest::testTig marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalTransactionMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalTransactionMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalTransactionMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/JournalTransactionMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void JournalTransactionMarshallerTest::t marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void JournalTransactionMarshallerTest::t marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/KeepAliveInfoMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/KeepAliveInfoMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/KeepAliveInfoMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/KeepAliveInfoMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void KeepAliveInfoMarshallerTest::testLo marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void KeepAliveInfoMarshallerTest::testTi marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/LastPartialCommandMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/LastPartialCommandMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/LastPartialCommandMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/LastPartialCommandMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void LastPartialCommandMarshallerTest::t marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void LastPartialCommandMarshallerTest::t marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/LocalTransactionIdMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/LocalTransactionIdMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/LocalTransactionIdMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/LocalTransactionIdMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void LocalTransactionIdMarshallerTest::t marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void LocalTransactionIdMarshallerTest::t marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageAckMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageAckMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageAckMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageAckMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void MessageAckMarshallerTest::testLoose marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void MessageAckMarshallerTest::testTight marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageDispatchMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageDispatchMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageDispatchMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageDispatchMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void MessageDispatchMarshallerTest::test marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void MessageDispatchMarshallerTest::test marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageDispatchNotificationMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageDispatchNotificationMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageDispatchNotificationMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageDispatchNotificationMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void MessageDispatchNotificationMarshall marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void MessageDispatchNotificationMarshall marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageIdMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageIdMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageIdMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessageIdMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void MessageIdMarshallerTest::testLooseM marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void MessageIdMarshallerTest::testTightM marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessagePullMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessagePullMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessagePullMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/MessagePullMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void MessagePullMarshallerTest::testLoos marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void MessagePullMarshallerTest::testTigh marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/NetworkBridgeFilterMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/NetworkBridgeFilterMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/NetworkBridgeFilterMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/NetworkBridgeFilterMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void NetworkBridgeFilterMarshallerTest:: marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void NetworkBridgeFilterMarshallerTest:: marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/PartialCommandMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/PartialCommandMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/PartialCommandMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/PartialCommandMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void PartialCommandMarshallerTest::testL marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void PartialCommandMarshallerTest::testT marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ProducerAckMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ProducerAckMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ProducerAckMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ProducerAckMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ProducerAckMarshallerTest::testLoos marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ProducerAckMarshallerTest::testTigh marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ProducerIdMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ProducerIdMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ProducerIdMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ProducerIdMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ProducerIdMarshallerTest::testLoose marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ProducerIdMarshallerTest::testTight marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ProducerInfoMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ProducerInfoMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ProducerInfoMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ProducerInfoMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ProducerInfoMarshallerTest::testLoo marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ProducerInfoMarshallerTest::testTig marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/RemoveInfoMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/RemoveInfoMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/RemoveInfoMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/RemoveInfoMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void RemoveInfoMarshallerTest::testLoose marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void RemoveInfoMarshallerTest::testTight marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/RemoveSubscriptionInfoMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/RemoveSubscriptionInfoMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/RemoveSubscriptionInfoMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/RemoveSubscriptionInfoMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void RemoveSubscriptionInfoMarshallerTes marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void RemoveSubscriptionInfoMarshallerTes marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ReplayCommandMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ReplayCommandMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ReplayCommandMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ReplayCommandMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ReplayCommandMarshallerTest::testLo marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ReplayCommandMarshallerTest::testTi marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ResponseMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ResponseMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ResponseMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ResponseMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ResponseMarshallerTest::testLooseMa marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ResponseMarshallerTest::testTightMa marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/SessionIdMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/SessionIdMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/SessionIdMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/SessionIdMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void SessionIdMarshallerTest::testLooseM marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void SessionIdMarshallerTest::testTightM marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/SessionInfoMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/SessionInfoMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/SessionInfoMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/SessionInfoMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void SessionInfoMarshallerTest::testLoos marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void SessionInfoMarshallerTest::testTigh marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ShutdownInfoMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ShutdownInfoMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ShutdownInfoMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/ShutdownInfoMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ShutdownInfoMarshallerTest::testLoo marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ShutdownInfoMarshallerTest::testTig marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/SubscriptionInfoMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/SubscriptionInfoMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/SubscriptionInfoMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/SubscriptionInfoMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void SubscriptionInfoMarshallerTest::tes marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void SubscriptionInfoMarshallerTest::tes marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/TransactionInfoMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/TransactionInfoMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/TransactionInfoMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/TransactionInfoMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void TransactionInfoMarshallerTest::test marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void TransactionInfoMarshallerTest::test marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/WireFormatInfoMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/WireFormatInfoMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/WireFormatInfoMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/WireFormatInfoMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void WireFormatInfoMarshallerTest::testL marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void WireFormatInfoMarshallerTest::testT marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/XATransactionIdMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/XATransactionIdMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/XATransactionIdMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v2/XATransactionIdMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void XATransactionIdMarshallerTest::test marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void XATransactionIdMarshallerTest::test marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQBlobMessageMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQBlobMessageMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQBlobMessageMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQBlobMessageMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -100,7 +100,7 @@ void ActiveMQBlobMessageMarshallerTest:: marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -158,7 +158,7 @@ void ActiveMQBlobMessageMarshallerTest:: marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQBytesMessageMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQBytesMessageMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQBytesMessageMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQBytesMessageMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -100,7 +100,7 @@ void ActiveMQBytesMessageMarshallerTest: marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -158,7 +158,7 @@ void ActiveMQBytesMessageMarshallerTest: marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQMapMessageMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQMapMessageMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQMapMessageMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQMapMessageMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -100,7 +100,7 @@ void ActiveMQMapMessageMarshallerTest::t marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -158,7 +158,7 @@ void ActiveMQMapMessageMarshallerTest::t marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQMessageMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQMessageMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQMessageMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQMessageMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -100,7 +100,7 @@ void ActiveMQMessageMarshallerTest::test marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -158,7 +158,7 @@ void ActiveMQMessageMarshallerTest::test marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQObjectMessageMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQObjectMessageMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQObjectMessageMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQObjectMessageMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -100,7 +100,7 @@ void ActiveMQObjectMessageMarshallerTest marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -158,7 +158,7 @@ void ActiveMQObjectMessageMarshallerTest marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQQueueMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQQueueMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQQueueMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQQueueMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ActiveMQQueueMarshallerTest::testLo marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ActiveMQQueueMarshallerTest::testTi marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQStreamMessageMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQStreamMessageMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQStreamMessageMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQStreamMessageMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -100,7 +100,7 @@ void ActiveMQStreamMessageMarshallerTest marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -158,7 +158,7 @@ void ActiveMQStreamMessageMarshallerTest marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTempQueueMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTempQueueMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTempQueueMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTempQueueMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ActiveMQTempQueueMarshallerTest::te marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ActiveMQTempQueueMarshallerTest::te marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTempTopicMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTempTopicMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTempTopicMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTempTopicMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ActiveMQTempTopicMarshallerTest::te marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ActiveMQTempTopicMarshallerTest::te marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTextMessageMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTextMessageMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTextMessageMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTextMessageMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -100,7 +100,7 @@ void ActiveMQTextMessageMarshallerTest:: marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -158,7 +158,7 @@ void ActiveMQTextMessageMarshallerTest:: marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTopicMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTopicMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTopicMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ActiveMQTopicMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ActiveMQTopicMarshallerTest::testLo marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ActiveMQTopicMarshallerTest::testTi marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/BrokerIdMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/BrokerIdMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/BrokerIdMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/BrokerIdMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void BrokerIdMarshallerTest::testLooseMa marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void BrokerIdMarshallerTest::testTightMa marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/BrokerInfoMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/BrokerInfoMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/BrokerInfoMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/BrokerInfoMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void BrokerInfoMarshallerTest::testLoose marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void BrokerInfoMarshallerTest::testTight marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ConnectionControlMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ConnectionControlMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ConnectionControlMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ConnectionControlMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ConnectionControlMarshallerTest::te marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ConnectionControlMarshallerTest::te marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ConnectionErrorMarshallerTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ConnectionErrorMarshallerTest.cpp?rev=928770&r1=928769&r2=928770&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ConnectionErrorMarshallerTest.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/wireformat/openwire/marshal/v3/ConnectionErrorMarshallerTest.cpp Mon Mar 29 13:32:32 2010 @@ -88,7 +88,7 @@ void ConnectionErrorMarshallerTest::test marshaller.looseMarshal( &openWireFormat, &outCommand, &dataOut ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte(); CPPUNIT_ASSERT( dataType == outCommand.getDataStructureType() ); @@ -134,7 +134,7 @@ void ConnectionErrorMarshallerTest::test marshaller.tightMarshal2( &openWireFormat, &outCommand, &dataOut, &bs ); // Now read it back in and make sure it's all right. - ByteArrayInputStream bais( baos.toByteArray(), baos.size() ); + ByteArrayInputStream bais( baos.toByteArray(), (int)baos.size() ); DataInputStream dataIn( &bais ); unsigned char dataType = dataIn.readByte();