You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2007/07/06 14:35:44 UTC

svn commit: r553864 - in /activemq/activemq-cpp/trunk: Makefile.am configure.ac

Author: tabish
Date: Fri Jul  6 05:35:43 2007
New Revision: 553864

URL: http://svn.apache.org/viewvc?view=rev&rev=553864
Log:
Adding a benchmarks test app so we can test the performance of a class in amq-cpp on multiple platforms and compare times.  Using it as an optimization aid to tweak performance as well.

Modified:
    activemq/activemq-cpp/trunk/Makefile.am
    activemq/activemq-cpp/trunk/configure.ac

Modified: activemq/activemq-cpp/trunk/Makefile.am
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/Makefile.am?view=diff&rev=553864&r1=553863&r2=553864
==============================================================================
--- activemq/activemq-cpp/trunk/Makefile.am (original)
+++ activemq/activemq-cpp/trunk/Makefile.am Fri Jul  6 05:35:43 2007
@@ -20,7 +20,7 @@
 
 SUBDIRS = src/main src/examples
 if BUILD_CPPUNIT_TESTS
-  SUBDIRS += src/test src/test-integration
+  SUBDIRS += src/test src/test-integration src/test-benchmarks
 endif
 
 #Distribute these directories:

Modified: activemq/activemq-cpp/trunk/configure.ac
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/configure.ac?view=diff&rev=553864&r1=553863&r2=553864
==============================================================================
--- activemq/activemq-cpp/trunk/configure.ac (original)
+++ activemq/activemq-cpp/trunk/configure.ac Fri Jul  6 05:35:43 2007
@@ -201,6 +201,7 @@
 then
   AC_CONFIG_FILES(src/test/Makefile)
   AC_CONFIG_FILES(src/test-integration/Makefile)
+  AC_CONFIG_FILES(src/test-benchmarks/Makefile)
 fi
 
 AC_OUTPUT