Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 96053 invoked from network); 8 Aug 2007 13:27:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Aug 2007 13:27:16 -0000 Received: (qmail 75933 invoked by uid 500); 8 Aug 2007 13:26:51 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 75904 invoked by uid 500); 8 Aug 2007 13:26:51 -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 75878 invoked by uid 99); 8 Aug 2007 13:26:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Aug 2007 06:26:51 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Aug 2007 13:26:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 86CE11A981A; Wed, 8 Aug 2007 06:26:30 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r563872 - in /activemq/activemq-cpp/trunk/src/decaf/src/test: Makefile.am testRegistry.cpp Date: Wed, 08 Aug 2007 13:26:30 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070808132630.86CE11A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Wed Aug 8 06:26:29 2007 New Revision: 563872 URL: http://svn.apache.org/viewvc?view=rev&rev=563872 Log: http://issues.apache.org/activemq/browse/AMQCPP-103 Implementing more of the Math functions Modified: activemq/activemq-cpp/trunk/src/decaf/src/test/Makefile.am activemq/activemq-cpp/trunk/src/decaf/src/test/testRegistry.cpp Modified: activemq/activemq-cpp/trunk/src/decaf/src/test/Makefile.am URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/test/Makefile.am?view=diff&rev=563872&r1=563871&r2=563872 ============================================================================== --- activemq/activemq-cpp/trunk/src/decaf/src/test/Makefile.am (original) +++ activemq/activemq-cpp/trunk/src/decaf/src/test/Makefile.am Wed Aug 8 06:26:29 2007 @@ -26,6 +26,7 @@ decaf/lang/DoubleTest.cpp \ decaf/lang/ThreadTest.cpp \ decaf/lang/ExceptionTest.cpp \ + decaf/lang/MathTest.cpp \ decaf/io/BufferedInputStreamTest.cpp \ decaf/io/BufferedOutputStreamTest.cpp \ decaf/io/ByteArrayInputStreamTest.cpp \ @@ -60,6 +61,7 @@ decaf/lang/DoubleTest.h \ decaf/lang/ThreadTest.h \ decaf/lang/ExceptionTest.h \ + decaf/lang/MathTest.h \ decaf/io/BufferedInputStreamTest.h \ decaf/io/BufferedOutputStreamTest.h \ decaf/io/ByteArrayInputStreamTest.h \ Modified: activemq/activemq-cpp/trunk/src/decaf/src/test/testRegistry.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/test/testRegistry.cpp?view=diff&rev=563872&r1=563871&r2=563872 ============================================================================== --- activemq/activemq-cpp/trunk/src/decaf/src/test/testRegistry.cpp (original) +++ activemq/activemq-cpp/trunk/src/decaf/src/test/testRegistry.cpp Wed Aug 8 06:26:29 2007 @@ -31,22 +31,24 @@ //#include //CPPUNIT_TEST_SUITE_REGISTRATION( decaf::io::DataOutputStreamTest ); -#include -CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::ByteTest ); -#include -CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::CharacterTest ); -#include -CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::BooleanTest ); -#include -CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::ShortTest ); -#include -CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::IntegerTest ); -#include -CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::LongTest ); -#include -CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::FloatTest ); -#include -CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::DoubleTest ); +#include +CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::MathTest ); +//#include +//CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::ByteTest ); +//#include +//CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::CharacterTest ); +//#include +//CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::BooleanTest ); +//#include +//CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::ShortTest ); +//#include +//CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::IntegerTest ); +//#include +//CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::LongTest ); +//#include +//CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::FloatTest ); +//#include +//CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::DoubleTest ); //#include //CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::ExceptionTest ); //#include