You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ar...@apache.org on 2008/06/27 16:24:52 UTC

svn commit: r672280 - in /incubator/qpid/trunk/qpid/cc: ./ artifacts/ config/ config/java/ logs/ scripts/

Author: arnaudsimon
Date: Fri Jun 27 07:24:51 2008
New Revision: 672280

URL: http://svn.apache.org/viewvc?rev=672280&view=rev
Log:
QPID-1157: Added CC scripts and config files

Added:
    incubator/qpid/trunk/qpid/cc/
    incubator/qpid/trunk/qpid/cc/artifacts/
    incubator/qpid/trunk/qpid/cc/config/
    incubator/qpid/trunk/qpid/cc/config.xml
    incubator/qpid/trunk/qpid/cc/config/bdbstore-cpp-trunk.xml
    incubator/qpid/trunk/qpid/cc/config/cpp-trunk-perftests.xml
    incubator/qpid/trunk/qpid/cc/config/cpp-trunk.xml
    incubator/qpid/trunk/qpid/cc/config/java/
    incubator/qpid/trunk/qpid/cc/config/java-trunk.xml
    incubator/qpid/trunk/qpid/cc/config/java/cpp.noprefetch.testprofile
    incubator/qpid/trunk/qpid/cc/config/java/cpp.testprofile
    incubator/qpid/trunk/qpid/cc/config/java/cppExcludeList
    incubator/qpid/trunk/qpid/cc/config/java/cppNoPrefetchExcludeList
    incubator/qpid/trunk/qpid/cc/config/java/java.testprofile
    incubator/qpid/trunk/qpid/cc/config/java/javaExcludeList
    incubator/qpid/trunk/qpid/cc/dashboard-config.xml
    incubator/qpid/trunk/qpid/cc/logs/
    incubator/qpid/trunk/qpid/cc/scripts/
    incubator/qpid/trunk/qpid/cc/scripts/bdbstorecppbuild.sh   (with props)
    incubator/qpid/trunk/qpid/cc/scripts/build.xml
    incubator/qpid/trunk/qpid/cc/scripts/cppbuild-perftests.sh   (with props)
    incubator/qpid/trunk/qpid/cc/scripts/cppbuild.sh   (with props)
    incubator/qpid/trunk/qpid/cc/scripts/javaconfig.sh   (with props)
    incubator/qpid/trunk/qpid/cc/scripts/javareport.sh   (with props)

Added: incubator/qpid/trunk/qpid/cc/config.xml
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/config.xml?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/config.xml (added)
+++ incubator/qpid/trunk/qpid/cc/config.xml Fri Jun 27 07:24:51 2008
@@ -0,0 +1,25 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<cruisecontrol>
+  <include.projects file="./config/cpp-trunk.xml"/>
+  <include.projects file="./config/java-trunk.xml"/>
+  <include.projects file="./config/bdbstore-cpp-trunk.xml"/>
+  <include.projects file="./config/cpp-trunk-perftests.xml"/>
+</cruisecontrol>

Added: incubator/qpid/trunk/qpid/cc/config/bdbstore-cpp-trunk.xml
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/config/bdbstore-cpp-trunk.xml?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/config/bdbstore-cpp-trunk.xml (added)
+++ incubator/qpid/trunk/qpid/cc/config/bdbstore-cpp-trunk.xml Fri Jun 27 07:24:51 2008
@@ -0,0 +1,48 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+<cruisecontrol>
+
+    <project name="bdbstore-cpp-trunk"
+             buildafterfailed="false">
+    
+    <!-- Load environment variables -->
+    <property environment="env" toupper="true"/>
+
+        <listeners>
+            <currentbuildstatuslistener file="logs/${project.name}/status.txt"/>
+        </listeners>
+
+        <bootstrappers>
+            <svnbootstrapper localWorkingCopy="${env.CPPSTORE_HOME}" />
+        </bootstrappers>
+
+        <modificationset quietperiod="30">
+            <buildstatus logdir="/logs/qpid-cpp-trunk/"/>
+            <svn localWorkingCopy="${env.CPPSTORE_HOME}"/>
+        </modificationset>
+
+        <schedule interval="3600">
+            <exec timeout="1800"
+	 	  command="/bin/bash" 
+		  args="${env.CC_HOME}/cc/scripts/bdbstorecppbuild.sh"
+		  workingdir="${env.CPPSTORE_HOME}" />
+        </schedule>
+
+    </project>
+</cruisecontrol>

Added: incubator/qpid/trunk/qpid/cc/config/cpp-trunk-perftests.xml
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/config/cpp-trunk-perftests.xml?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/config/cpp-trunk-perftests.xml (added)
+++ incubator/qpid/trunk/qpid/cc/config/cpp-trunk-perftests.xml Fri Jun 27 07:24:51 2008
@@ -0,0 +1,63 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<cruisecontrol>
+
+    <project name="qpid-cpp-trunk-perftests"
+             buildafterfailed="false">
+
+        <listeners>
+            <currentbuildstatuslistener file="logs/${project.name}/status.txt"/>
+        </listeners>
+
+        <bootstrappers>
+            <svnbootstrapper localWorkingCopy="../cpp" />
+            <svnbootstrapper localWorkingCopy="../specs" />
+            <svnbootstrapper localWorkingCopy="../python" />
+        </bootstrappers>
+
+        <modificationset quietperiod="30">
+            <alwaysbuild />
+        </modificationset>
+
+        <schedule>
+        <ant  	target="cpp-perftests"
+		uselogger="false"
+		time="0000"
+		timeout="3600"
+		antworkingdir="scripts">
+        </ant> 
+        </schedule>
+
+        <publishers>
+           <!--
+            <email subjectprefix="CC report fro ${project.name}" mailhost="localhost"
+                   returnaddress="my_email"
+		   buildresultsurl="http://my_host:8080/buildresults/${project.name}"
+                   skipusers="false" 
+		   reportsuccess="fixes"
+                   spamwhilebroken="true">
+                   <always address="email"/>
+		   <map alias="name" address="email"/>
+            </email>
+	    -->
+        </publishers>
+
+    </project>
+</cruisecontrol>

Added: incubator/qpid/trunk/qpid/cc/config/cpp-trunk.xml
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/config/cpp-trunk.xml?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/config/cpp-trunk.xml (added)
+++ incubator/qpid/trunk/qpid/cc/config/cpp-trunk.xml Fri Jun 27 07:24:51 2008
@@ -0,0 +1,48 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+<cruisecontrol>
+    <project name="qpid-cpp-trunk"
+             buildafterfailed="false">
+
+        <listeners>
+            <currentbuildstatuslistener file="logs/${project.name}/status.txt"/>
+        </listeners>
+
+        <bootstrappers>
+            <svnbootstrapper localWorkingCopy="../bin" />
+            <svnbootstrapper localWorkingCopy="../cpp" />
+            <svnbootstrapper localWorkingCopy="../specs" />
+            <svnbootstrapper localWorkingCopy="../python" />
+        </bootstrappers>
+
+        <modificationset quietperiod="30">
+            <svn localWorkingCopy="../bin"/>
+            <svn localWorkingCopy="../cpp"/>
+            <svn localWorkingCopy="../specs"/>
+            <svn localWorkingCopy="../python"/>
+        </modificationset>
+
+        <schedule interval="3600">
+            <exec timeout="1800" 
+		  command="/bin/bash" 
+		  args="../cc/scripts/cppbuild.sh"
+		  workingdir="../cpp" />
+        </schedule>
+    </project>
+</cruisecontrol>

Added: incubator/qpid/trunk/qpid/cc/config/java-trunk.xml
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/config/java-trunk.xml?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/config/java-trunk.xml (added)
+++ incubator/qpid/trunk/qpid/cc/config/java-trunk.xml Fri Jun 27 07:24:51 2008
@@ -0,0 +1,136 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<cruisecontrol>
+    <project name="qpid-java-trunk"
+             buildafterfailed="false">
+
+        <listeners>
+            <currentbuildstatuslistener file="logs/${project.name}/status.txt"/>
+        </listeners>
+
+        <bootstrappers>
+            <svnbootstrapper localWorkingCopy="../java" />
+            <svnbootstrapper localWorkingCopy="../gentools" />
+        </bootstrappers>
+
+        <modificationset quietperiod="30">
+            <buildstatus logdir="logs/qpid-cpp-trunk/"/>    
+            <buildstatus logdir="logs/bdbstore-cpp-trunk/"/>   
+            <svn localWorkingCopy="../java"/>
+            <svn localWorkingCopy="../gentools"/>
+        </modificationset>
+
+        <schedule interval="3600">
+	    <composite>
+
+            	<exec 	timeout="1800" 
+			command="/bin/bash" 
+		  	args="../cc/scripts/javaconfig.sh"
+		  	workingdir="../java" /> 
+		<!-- in VM 0.8 -->
+		<ant  	target="clean test"
+			uselogger="false"
+			antworkingdir="../java">
+                   <jvmarg arg="-Xmx1024m"/>
+		   <property name="profile" value="java"/>
+		</ant> 
+
+                 <ant  	target="report"
+			uselogger="false"
+			antworkingdir="../java">
+                   <jvmarg arg="-Xmx1024m"/>
+		</ant>   	      
+            	<exec 	timeout="1800" 
+			command="/bin/bash" 
+		  	args="../cc/scripts/javareport.sh 08"
+		  	workingdir="../java" />
+
+		<!-- cpp -->
+                <ant  	target="test"
+			uselogger="false"
+			antworkingdir="../java">
+                   <jvmarg arg="-Xmx1024m"/>
+	     	   <property name="profile" value="cpp"/>
+		</ant>
+		<ant  	target="report"
+			uselogger="false"
+			antworkingdir="../java">
+                   <jvmarg arg="-Xmx1024m"/>
+		</ant>   
+		<exec 	timeout="1800" 
+			command="/bin/bash" 
+		  	args="../cc/scripts/javareport.sh cpp"
+		  	workingdir="../java" />
+	        
+	       <!-- cpp no prefetch -->
+	       <ant  	target="test"
+			uselogger="false"
+			antworkingdir="../java">
+                   <jvmarg arg="-Xmx1024m"/>
+	     	   <property name="profile" value="cpp.noprefetch"/>
+		</ant>
+		<ant  	target="report"
+			uselogger="false"
+			antworkingdir="../java">
+                   <jvmarg arg="-Xmx1024m"/>
+		</ant>   
+		<exec 	timeout="1800" 
+			command="/bin/bash" 
+		  	args="../cc/scripts/javareport.sh cpp-noprefetch"
+		  	workingdir="../java" />	        
+
+		<!-- make the release 
+		<ant  	target="release"
+			uselogger="false"
+			antworkingdir="../java">
+                   <jvmarg arg="-Xmx1024m"/>
+		</ant>   
+		-->
+	    </composite>
+        </schedule>       
+
+        <publishers>
+
+	    <artifactspublisher dest="artifacts/${project.name}"
+				subdirectory="report_08"   
+				dir="../java/build/report_08"/>
+
+	    <artifactspublisher dest="artifacts/${project.name}"   
+				subdirectory="report_cpp"
+				dir="../java/build/report_cpp"/>
+
+            <artifactspublisher dest="artifacts/${project.name}"
+                                subdirectory="report_cpp-noprefetch"
+                                dir="../java/build/report_cpp-noprefetch"/>
+<!--
+            <email subjectprefix="CC report fro ${project.name}" mailhost="localhost"
+                   returnaddress="my_email"
+		   buildresultsurl="http://my_host:8080/buildresults/${project.name}"
+                   skipusers="false" 
+		   reportsuccess="fixes"
+                   spamwhilebroken="true">
+                   <always address="email"/>
+		   <map alias="name" address="email"/>
+            </email>
+-->
+        </publishers>
+
+    </project>
+</cruisecontrol>

Added: incubator/qpid/trunk/qpid/cc/config/java/cpp.noprefetch.testprofile
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/config/java/cpp.noprefetch.testprofile?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/config/java/cpp.noprefetch.testprofile (added)
+++ incubator/qpid/trunk/qpid/cc/config/java/cpp.noprefetch.testprofile Fri Jun 27 07:24:51 2008
@@ -0,0 +1,18 @@
+broker.version=0-10
+broker=${project.root}/../cpp/src/qpidd --data-dir ${build.data} -t --load-module store_home/lib/.libs/libbdbstore.so --auth no --no-module-dir
+broker.clean=${project.root}/clean-dir ${build.data}
+java.naming.provider.url=${project.root}/test-provider.properties
+test.excludes=true
+broker.ready=Listening on TCP port
+test.excludesfile=${project.root}/cppNoPrefetchExcludeList
+log=info
+amqj.logging.level=$log
+root.logging.level=$log
+log4j.configuration=file://${project.root}/log4j-test.xml
+test.fork=no
+test.mem=512M
+test=*Test
+haltonfailure=no
+haltonerror=no
+max_prefetch=0
+exclude.modules=systests
\ No newline at end of file

Added: incubator/qpid/trunk/qpid/cc/config/java/cpp.testprofile
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/config/java/cpp.testprofile?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/config/java/cpp.testprofile (added)
+++ incubator/qpid/trunk/qpid/cc/config/java/cpp.testprofile Fri Jun 27 07:24:51 2008
@@ -0,0 +1,19 @@
+broker.version=0-10
+broker=${project.root}/../cpp/src/qpidd --data-dir ${build.data} -t --load-module store_home/lib/.libs/libbdbstore.so --auth no --no-module-dir
+broker.clean=${project.root}/clean-dir ${build.data}
+java.naming.provider.url=${project.root}/test-provider.properties
+test.excludes=true
+test.excludesfile=${project.root}/010AsyncExcludeList
+broker.ready=Listening on TCP port
+log=info
+amqj.logging.level=$log
+root.logging.level=$log
+log4j.configuration=file://${project.root}/log4j-test.xml
+test.fork=no
+test.mem=512M
+test=*Test
+test1=*Tests
+haltonfailure=no
+haltonerror=no
+max_prefetch=1000
+exclude.modules=systests
\ No newline at end of file

Added: incubator/qpid/trunk/qpid/cc/config/java/cppExcludeList
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/config/java/cppExcludeList?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/config/java/cppExcludeList (added)
+++ incubator/qpid/trunk/qpid/cc/config/java/cppExcludeList Fri Jun 27 07:24:51 2008
@@ -0,0 +1,15 @@
+org.apache.qpid.test.unit.client.channelclose.ChannelCloseTest#*
+org.apache.qpid.client.ResetMessageListenerTest#*
+// those tests should be run with prefetch off
+org.apache.qpid.client.MessageListenerMultiConsumerTest#testRecieveC2Only
+org.apache.qpid.client.MessageListenerMultiConsumerTest#testRecieveBoth
+org.apache.qpid.test.unit.xa.TopicTest#testMultiMessagesDurSubCrash
+org.apache.qpid.test.unit.xa.TopicTest#testMigrateDurableSubscriber
+// those tests need durable subscribe states to be persisted
+org.apache.qpid.test.unit.topic.DurableSubscriptionTest#testDurSubRestoredAfterNonPersistentMessageSent
+org.apache.qpid.test.unit.ct.DurableSubscriberTest#testDurSubRestoresMessageSelector
+// the 0.10 c++ broker does not implement forget
+org.apache.qpid.test.unit.xa.FaultTest#testForget
+// removed because of bug 445500
+// org.apache.qpid.test.unit.topic.DurableSubscriptionTest#testDurabilityAUTOACK
+// org.apache.qpid.test.unit.topic.DurableSubscriptionTest#testDurabilityNOACKSessionPerConnection
\ No newline at end of file

Added: incubator/qpid/trunk/qpid/cc/config/java/cppNoPrefetchExcludeList
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/config/java/cppNoPrefetchExcludeList?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/config/java/cppNoPrefetchExcludeList (added)
+++ incubator/qpid/trunk/qpid/cc/config/java/cppNoPrefetchExcludeList Fri Jun 27 07:24:51 2008
@@ -0,0 +1,18 @@
+// those tests use 0.8 semantics
+org.apache.qpid.test.unit.client.channelclose.ChannelCloseTest#*
+org.apache.qpid.client.ResetMessageListenerTest#*
+org.apache.qpid.test.unit.transacted.TransactedTest#testRollback
+// those tests need durable subscribe states to be persisted
+org.apache.qpid.test.unit.topic.DurableSubscriptionTest#testDurSubRestoredAfterNonPersistentMessageSent
+org.apache.qpid.test.unit.ct.DurableSubscriberTest#testDurSubRestoresMessageSelector
+// This test is not finished
+org.apache.qpid.test.testcases.TTLTest#*
+// the 0.10 c++ broker does not implement forget
+org.apache.qpid.test.unit.xa.FaultTest#testForget
+// See Bug 443031 
+org.apache.qpid.test.unit.xa.TopicTest#testMultiMessagesDurSubCrash
+// removed because of bug 445500
+// org.apache.qpid.test.unit.topic.DurableSubscriptionTest#testDurabilityAUTOACK
+// org.apache.qpid.test.unit.topic.DurableSubscriptionTest#testDurabilityNOACKSessionPerConnection
+// trace sent to Gordon 
+// org.apache.qpid.test.unit.basic.SelectorTest#*
\ No newline at end of file

Added: incubator/qpid/trunk/qpid/cc/config/java/java.testprofile
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/config/java/java.testprofile?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/config/java/java.testprofile (added)
+++ incubator/qpid/trunk/qpid/cc/config/java/java.testprofile Fri Jun 27 07:24:51 2008
@@ -0,0 +1,18 @@
+broker.version=0-8
+broker=vm
+broker.clean=${project.root}/clean-dir ${build.data}
+java.naming.provider.url=${project.root}/test-provider.properties
+test.excludes=true
+test.excludesfile=${project.root}/08ExcludeList
+log=info
+amqj.logging.level=$log
+root.logging.level=$log
+log4j.configuration=file://${project.root}/log4j-test.xml
+test.fork=no
+test.mem=512M
+test=*Test
+test1=*Tests
+haltonfailure=no
+haltonerror=no
+max_prefetch=1000
+exclude.modules=systests
\ No newline at end of file

Added: incubator/qpid/trunk/qpid/cc/config/java/javaExcludeList
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/config/java/javaExcludeList?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/config/java/javaExcludeList (added)
+++ incubator/qpid/trunk/qpid/cc/config/java/javaExcludeList Fri Jun 27 07:24:51 2008
@@ -0,0 +1,13 @@
+org.apache.qpid.test.unit.xa.QueueTest#*
+org.apache.qpid.test.unit.xa.TopicTest#*
+org.apache.qpid.test.unit.xa.FaultTest#*
+org.apache.qpid.test.unit.ct.DurableSubscriberTests#*
+// those tests are failing see: QPID- 
+org.apache.qpid.test.unit.topic.TopicSessionTest#testNoLocal
+// known issue
+org.apache.qpid.test.unit.topic.DurableSubscriptionTest#testDurableWithInvalidSelector
+// Those tests are not finished
+org.apache.qpid.test.testcases.TTLTest#*
+org.apache.qpid.test.testcases.FailoverTest#*
+// See qpid-1144
+org.apache.qpid.test.testcases.ImmediateMessageTest#*

Added: incubator/qpid/trunk/qpid/cc/dashboard-config.xml
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/dashboard-config.xml?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/dashboard-config.xml (added)
+++ incubator/qpid/trunk/qpid/cc/dashboard-config.xml Fri Jun 27 07:24:51 2008
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+ <dashboard>
+ 	<buildloop
+	    logsdir="logs/"
+      	    artifactsdir="artifacts" />
+	<features allowforcebuild="true"/>
+	<trackingtool projectname="cc" baseurl="http://localhost:8080/" keywords="QPID"/>
+ 	<subtabs>
+	    <subtab class="net.sourceforge.cruisecontrol.dashboard.widgets.ErrorsAndWarningsMessagesWidget" />
+	</subtabs>
+</dashboard>
+ 

Added: incubator/qpid/trunk/qpid/cc/scripts/bdbstorecppbuild.sh
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/scripts/bdbstorecppbuild.sh?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/scripts/bdbstorecppbuild.sh (added)
+++ incubator/qpid/trunk/qpid/cc/scripts/bdbstorecppbuild.sh Fri Jun 27 07:24:51 2008
@@ -0,0 +1,26 @@
+#!/bin/bash
+###########################################################
+#Licensed to the Apache Software Foundation (ASF) under one
+#or more contributor license agreements. See the NOTICE file
+#distributed with this work for additional information
+#regarding copyright ownership. The ASF licenses this file
+#to you under the Apache License, Version 2.0 (the
+#"License"); you may not use this file except in compliance
+#with the License. You may obtain a copy of the License at
+#
+#http://www.apache.org/licenses/LICENSE-2.0
+#
+#Unless required by applicable law or agreed to in writing,
+#software distributed under the License is distributed on an
+#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#KIND, either express or implied. See the License for the
+#specific language governing permissions and limitations
+#under the License.
+###########################################################
+
+if [ -f Makefile ]; then
+  make distclean
+fi
+ ./bootstrap && \
+ ./configure CXXFLAGS="-O3 -DNDEBUG" --with-qpid-checkout=$CC_HOME && \ 
+ make

Propchange: incubator/qpid/trunk/qpid/cc/scripts/bdbstorecppbuild.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/qpid/trunk/qpid/cc/scripts/build.xml
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/scripts/build.xml?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/scripts/build.xml (added)
+++ incubator/qpid/trunk/qpid/cc/scripts/build.xml Fri Jun 27 07:24:51 2008
@@ -0,0 +1,26 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project name="run-tests" default="cpp-perftests" basedir=".">
+
+<target name="cpp-perftests">
+  <exec executable="./cppbuild-perftests.sh" failonerror="true"/> 
+</target>
+   
+</project>     

Added: incubator/qpid/trunk/qpid/cc/scripts/cppbuild-perftests.sh
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/scripts/cppbuild-perftests.sh?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/scripts/cppbuild-perftests.sh (added)
+++ incubator/qpid/trunk/qpid/cc/scripts/cppbuild-perftests.sh Fri Jun 27 07:24:51 2008
@@ -0,0 +1,23 @@
+#!/bin/bash
+###########################################################
+#Licensed to the Apache Software Foundation (ASF) under one
+#or more contributor license agreements. See the NOTICE file
+#distributed with this work for additional information
+#regarding copyright ownership. The ASF licenses this file
+#to you under the Apache License, Version 2.0 (the
+#"License"); you may not use this file except in compliance
+#with the License. You may obtain a copy of the License at
+#
+#http://www.apache.org/licenses/LICENSE-2.0
+#
+#Unless required by applicable law or agreed to in writing,
+#software distributed under the License is distributed on an
+#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#KIND, either express or implied. See the License for the
+#specific language governing permissions and limitations
+#under the License.
+###########################################################
+
+cd $CC_HOME/cpp
+svn stat --no-ignore | awk '/^[I?]/{print $2}' | xargs rm -r
+./bootstrap && ./configure CXXFLAGS="-O3 -DNDEBUG" && make -j4 all && cd src/tests && make -j4 check

Propchange: incubator/qpid/trunk/qpid/cc/scripts/cppbuild-perftests.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/qpid/trunk/qpid/cc/scripts/cppbuild.sh
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/scripts/cppbuild.sh?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/scripts/cppbuild.sh (added)
+++ incubator/qpid/trunk/qpid/cc/scripts/cppbuild.sh Fri Jun 27 07:24:51 2008
@@ -0,0 +1,21 @@
+#!/bin/bash -x
+###########################################################
+#Licensed to the Apache Software Foundation (ASF) under one
+#or more contributor license agreements. See the NOTICE file
+#distributed with this work for additional information
+#regarding copyright ownership. The ASF licenses this file
+#to you under the Apache License, Version 2.0 (the
+#"License"); you may not use this file except in compliance
+#with the License. You may obtain a copy of the License at
+#
+#http://www.apache.org/licenses/LICENSE-2.0
+#
+#Unless required by applicable law or agreed to in writing,
+#software distributed under the License is distributed on an
+#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#KIND, either express or implied. See the License for the
+#specific language governing permissions and limitations
+#under the License.
+###########################################################
+
+make distclean && ./bootstrap && ./configure && make
\ No newline at end of file

Propchange: incubator/qpid/trunk/qpid/cc/scripts/cppbuild.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/qpid/trunk/qpid/cc/scripts/javaconfig.sh
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/scripts/javaconfig.sh?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/scripts/javaconfig.sh (added)
+++ incubator/qpid/trunk/qpid/cc/scripts/javaconfig.sh Fri Jun 27 07:24:51 2008
@@ -0,0 +1,25 @@
+#!/bin/bash
+###########################################################
+#Licensed to the Apache Software Foundation (ASF) under one
+#or more contributor license agreements. See the NOTICE file
+#distributed with this work for additional information
+#regarding copyright ownership. The ASF licenses this file
+#to you under the Apache License, Version 2.0 (the
+#"License"); you may not use this file except in compliance
+#with the License. You may obtain a copy of the License at
+#
+#http://www.apache.org/licenses/LICENSE-2.0
+#
+#Unless required by applicable law or agreed to in writing,
+#software distributed under the License is distributed on an
+#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#KIND, either express or implied. See the License for the
+#specific language governing permissions and limitations
+#under the License.
+###########################################################
+
+# copy the profiles
+sed "s#store_home#$CPPSTORE_HOME#g" $CC_HOME/cc/config/java/cpp.noprefetch.testprofile > "$CC_HOME/java/"/cpp.noprefetch.testprofile
+sed "s#store_home#$CPPSTORE_HOME#g" $CC_HOME/cc/config/java/cpp.testprofile > "$CC_HOME/java"/cpp.testprofile
+cp $CC_HOME/cc/config/java/*ExcludeList $CC_HOME/java/.
+cp $CC_HOME/cc/config/java/java.testprofile $CC_HOME/java/.
\ No newline at end of file

Propchange: incubator/qpid/trunk/qpid/cc/scripts/javaconfig.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/qpid/trunk/qpid/cc/scripts/javareport.sh
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cc/scripts/javareport.sh?rev=672280&view=auto
==============================================================================
--- incubator/qpid/trunk/qpid/cc/scripts/javareport.sh (added)
+++ incubator/qpid/trunk/qpid/cc/scripts/javareport.sh Fri Jun 27 07:24:51 2008
@@ -0,0 +1,25 @@
+#!/bin/bash
+###########################################################
+#Licensed to the Apache Software Foundation (ASF) under one
+#or more contributor license agreements. See the NOTICE file
+#distributed with this work for additional information
+#regarding copyright ownership. The ASF licenses this file
+#to you under the Apache License, Version 2.0 (the
+#"License"); you may not use this file except in compliance
+#with the License. You may obtain a copy of the License at
+#
+#http://www.apache.org/licenses/LICENSE-2.0
+#
+#Unless required by applicable law or agreed to in writing,
+#software distributed under the License is distributed on an
+#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#KIND, either express or implied. See the License for the
+#specific language governing permissions and limitations
+#under the License.
+###########################################################
+cd "$CC_HOME/java/build"
+pwd 
+if [[ -d report_$1 ]]; then rm -fr report_$1; fi
+if [[ -d report ]]; then mv report report_$1; fi
+rm -rf ./results/*
+rm -rf ./data/*
\ No newline at end of file

Propchange: incubator/qpid/trunk/qpid/cc/scripts/javareport.sh
------------------------------------------------------------------------------
    svn:executable = *