JBossWS SVN: r7661 - common/branches/jbossws-common-1.0.0.GA_CP/src/main/java/org/jboss/wsf/common.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-06-19 07:03:31 -0400 (Thu, 19 Jun 2008)
New Revision: 7661
Modified:
common/branches/jbossws-common-1.0.0.GA_CP/src/main/java/org/jboss/wsf/common/DOMUtils.java
common/branches/jbossws-common-1.0.0.GA_CP/src/main/java/org/jboss/wsf/common/IOUtils.java
Log:
[JBPAPP-901] DOMUtils doesn't clear thread locals.
Modified: common/branches/jbossws-common-1.0.0.GA_CP/src/main/java/org/jboss/wsf/common/DOMUtils.java
===================================================================
--- common/branches/jbossws-common-1.0.0.GA_CP/src/main/java/org/jboss/wsf/common/DOMUtils.java 2008-06-19 10:58:36 UTC (rev 7660)
+++ common/branches/jbossws-common-1.0.0.GA_CP/src/main/java/org/jboss/wsf/common/DOMUtils.java 2008-06-19 11:03:31 UTC (rev 7661)
@@ -113,6 +113,12 @@
}
};
+ public static void clearThreadLocals()
+ {
+ documentThreadLocal.remove();
+ builderThreadLocal.remove();
+ }
+
// Hide the constructor
private DOMUtils()
{
Modified: common/branches/jbossws-common-1.0.0.GA_CP/src/main/java/org/jboss/wsf/common/IOUtils.java
===================================================================
--- common/branches/jbossws-common-1.0.0.GA_CP/src/main/java/org/jboss/wsf/common/IOUtils.java 2008-06-19 10:58:36 UTC (rev 7660)
+++ common/branches/jbossws-common-1.0.0.GA_CP/src/main/java/org/jboss/wsf/common/IOUtils.java 2008-06-19 11:03:31 UTC (rev 7661)
@@ -63,27 +63,47 @@
*/
public static void copyStream(OutputStream outs, InputStream ins) throws IOException
{
- byte[] bytes = new byte[1024];
- int r = ins.read(bytes);
- while (r > 0)
+ try
{
- outs.write(bytes, 0, r);
- r = ins.read(bytes);
+ byte[] bytes = new byte[1024];
+ int r = ins.read(bytes);
+ while (r > 0)
+ {
+ outs.write(bytes, 0, r);
+ r = ins.read(bytes);
+ }
}
+ catch (IOException e)
+ {
+ throw e;
+ }
+ finally{
+ ins.close();
+ }
}
/** Copy the reader to the output stream
*/
public static void copyReader(OutputStream outs, Reader reader) throws IOException
{
- OutputStreamWriter writer = new OutputStreamWriter(outs);
- char[] bytes = new char[1024];
- int r = reader.read(bytes);
- while (r > 0)
+ try
{
- writer.write(bytes, 0, r);
- r = reader.read(bytes);
+ OutputStreamWriter writer = new OutputStreamWriter(outs);
+ char[] bytes = new char[1024];
+ int r = reader.read(bytes);
+ while (r > 0)
+ {
+ writer.write(bytes, 0, r);
+ r = reader.read(bytes);
+ }
}
+ catch (IOException e)
+ {
+ throw e;
+ }
+ finally{
+ reader.close();
+ }
}
public static byte[] convertToBytes(DataHandler dh)
@@ -106,17 +126,27 @@
*/
public static InputStream transformReader(Reader reader) throws IOException
{
- int capacity = 1024;
- char[] charBuffer = new char[capacity];
- StringBuffer strBuffer = new StringBuffer(capacity);
+ try
+ {
+ int capacity = 1024;
+ char[] charBuffer = new char[capacity];
+ StringBuffer strBuffer = new StringBuffer(capacity);
- int len = reader.read(charBuffer, 0, capacity);
- while (len > 0)
+ int len = reader.read(charBuffer, 0, capacity);
+ while (len > 0)
+ {
+ strBuffer.append(charBuffer, 0, len);
+ len = reader.read(charBuffer, 0, capacity);
+ }
+ return new ByteArrayInputStream(strBuffer.toString().getBytes());
+ }
+ catch (IOException e)
{
- strBuffer.append(charBuffer, 0, len);
- len = reader.read(charBuffer, 0, capacity);
+ throw e;
}
- return new ByteArrayInputStream(strBuffer.toString().getBytes());
+ finally{
+ reader.close();
+ }
}
public static File createTempDirectory() throws IOException
16 years, 9 months
JBossWS SVN: r7660 - in framework/trunk: hudson/hudson-home/jobs/AS-Tests-AS-4.2.1 and 56 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-06-19 06:58:36 -0400 (Thu, 19 Jun 2008)
New Revision: 7660
Modified:
framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-4.2.1/config.xml
framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-4.2.2/config.xml
framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.0/config.xml
framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.1/config.xml
framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-4.2.2/config.xml
framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-5.0.0/config.xml
framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-5.0.1/config.xml
framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-4.2.2/config.xml
framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-5.0.0/config.xml
framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-5.0.1/config.xml
framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-4.2.2/config.xml
framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-5.0.0/config.xml
framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-5.0.1/config.xml
framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-4.2.2/config.xml
framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-5.0.0/config.xml
framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-5.0.1/config.xml
framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-4.2.2/config.xml
framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-5.0.0/config.xml
framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-5.0.1/config.xml
framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-4.2.2/config.xml
framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-5.0.0/config.xml
framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-5.0.1/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.1/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.2-JDK6/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.2/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.3-JDK6/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.0-JDK6/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.0/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.1-JDK6/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.1/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.1/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2-JDK6/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.0-JDK6/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.0/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.1-JDK6/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.1/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.1/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.2-JDK6/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.2/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.3-JDK6/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.3/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.0-JDK6/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.0/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.1-JDK6/config.xml
framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.1/config.xml
framework/trunk/pom.xml
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/context/WebServiceContextEJBTestCase.java
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/context/WebServiceContextJSETestCase.java
Log:
sync framework trunk with QA branch 'svn merge -r 7482:7512 https://svn.jboss.org/repos/jbossws/framework/tags/jbossws-framework-3.0....'
Modified: framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-4.2.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-4.2.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-4.2.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,10 +10,11 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
+JBOSS_TARGET=jboss421
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.1/workspace/JBossAS-4.2.1/build/output/(a)hudson.jboss421.build@
-ENVIRONMENT="-Dmaven.opts=-U -Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss421 -Djboss421.home=$JBOSS_INSTANCE"
+ENVIRONMENT="-Dmaven.opts=-U -Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=$JBOSS_TARGET -Djboss421.home=$JBOSS_INSTANCE"
#
# stop jbossas
@@ -23,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss421
@@ -51,7 +52,8 @@
# execute tests
#
./build.sh -Dnode0=$JBOSS_BINDADDR tests-webservice tests-report 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# copy the test reports
Modified: framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-4.2.2/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-4.2.2/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-4.2.2/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,10 +10,11 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
+JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
-ENVIRONMENT="-Dmaven.opts=-U -Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss422 -Djboss422.home=$JBOSS_INSTANCE"
+ENVIRONMENT="-Dmaven.opts=-U -Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=$JBOSS_TARGET -Djboss422.home=$JBOSS_INSTANCE"
#
# stop jbossas
@@ -23,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss422
@@ -51,7 +52,8 @@
# execute tests
#
./build.sh -Dnode0=$JBOSS_BINDADDR tests-webservice tests-report 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# copy the test reports
Modified: framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-4.2.3/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-4.2.3/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,10 +10,11 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
+JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
-ENVIRONMENT="-Dmaven.opts=-U -Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss423 -Djboss423.home=$JBOSS_INSTANCE"
+ENVIRONMENT="-Dmaven.opts=-U -Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=$JBOSS_TARGET -Djboss423.home=$JBOSS_INSTANCE"
#
# stop jbossas
@@ -23,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss423
@@ -51,7 +52,8 @@
# execute tests
#
./build.sh -Dnode0=$JBOSS_BINDADDR tests-webservice tests-report 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# copy the test reports
Modified: framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.0/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.0/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.0/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,10 +10,11 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
+JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
-ENVIRONMENT="-Dmaven.opts=-U -Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss500 -Djboss500.home=$JBOSS_INSTANCE"
+ENVIRONMENT="-Dmaven.opts=-U -Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=$JBOSS_TARGET -Djboss500.home=$JBOSS_INSTANCE"
#
# stop jbossas
@@ -23,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss500
@@ -51,7 +52,8 @@
# execute tests
#
./build.sh -Dnode0=$JBOSS_BINDADDR tests-webservice tests-report 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# copy the test reports
Modified: framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/AS-Tests-AS-5.0.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,10 +10,11 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
+JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
-ENVIRONMENT="-Dmaven.opts=-U -Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=jboss501 -Djboss501.home=$JBOSS_INSTANCE"
+ENVIRONMENT="-Dmaven.opts=-U -Djboss.bind.address=(a)jboss.bind.address@ -Djbossws.integration.target=$JBOSS_TARGET -Djboss501.home=$JBOSS_INSTANCE"
#
# stop jbossas
@@ -23,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss501
@@ -51,7 +52,8 @@
# execute tests
#
./build.sh -Dnode0=$JBOSS_BINDADDR tests-webservice tests-report 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# copy the test reports
Modified: framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-4.2.2/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-4.2.2/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-4.2.2/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKCXF=$WORKSPACE/stack-cxf
+STACKDIR=$WORKSPACE/stack-cxf
JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKCXF
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss422
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-4.2.3/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-4.2.3/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKCXF=$WORKSPACE/stack-cxf
+STACKDIR=$WORKSPACE/stack-cxf
JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKCXF
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss423
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-5.0.0/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-5.0.0/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-5.0.0/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKCXF=$WORKSPACE/stack-cxf
+STACKDIR=$WORKSPACE/stack-cxf
JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKCXF
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss500
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-5.0.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-5.0.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/CXF-Core-AS-5.0.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKCXF=$WORKSPACE/stack-cxf
+STACKDIR=$WORKSPACE/stack-cxf
JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKCXF
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss501
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-4.2.2/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-4.2.2/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-4.2.2/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKCXF=$WORKSPACE/stack-cxf
+STACKDIR=$WORKSPACE/stack-cxf
JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKCXF
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-4.2.3/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-4.2.3/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKCXF=$WORKSPACE/stack-cxf
+STACKDIR=$WORKSPACE/stack-cxf
JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKCXF
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-5.0.0/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-5.0.0/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-5.0.0/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKCXF=$WORKSPACE/stack-cxf
+STACKDIR=$WORKSPACE/stack-cxf
JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKCXF
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-5.0.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-5.0.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/CXF-Distro-AS-5.0.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKCXF=$WORKSPACE/stack-cxf
+STACKDIR=$WORKSPACE/stack-cxf
JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKCXF
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-4.2.2/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-4.2.2/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-4.2.2/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKCXF=$WORKSPACE/stack-cxf
+STACKDIR=$WORKSPACE/stack-cxf
JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKCXF
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss422
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-4.2.3/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-4.2.3/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKCXF=$WORKSPACE/stack-cxf
+STACKDIR=$WORKSPACE/stack-cxf
JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKCXF
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss423
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-5.0.0/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-5.0.0/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-5.0.0/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKCXF=$WORKSPACE/stack-cxf
+STACKDIR=$WORKSPACE/stack-cxf
JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKCXF
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss500
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-5.0.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-5.0.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/CXF-Integration-AS-5.0.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKCXF=$WORKSPACE/stack-cxf
+STACKDIR=$WORKSPACE/stack-cxf
JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKCXF
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss501
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-4.2.2/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-4.2.2/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-4.2.2/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKMETRO=$WORKSPACE/stack-metro
+STACKDIR=$WORKSPACE/stack-metro
JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKMETRO
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss422
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-4.2.3/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-4.2.3/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKMETRO=$WORKSPACE/stack-metro
+STACKDIR=$WORKSPACE/stack-metro
JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKMETRO
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss423
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-5.0.0/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-5.0.0/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-5.0.0/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKMETRO=$WORKSPACE/stack-metro
+STACKDIR=$WORKSPACE/stack-metro
JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKMETRO
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss500
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-5.0.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-5.0.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Metro-Core-AS-5.0.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKMETRO=$WORKSPACE/stack-metro
+STACKDIR=$WORKSPACE/stack-metro
JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKMETRO
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss501
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-4.2.2/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-4.2.2/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-4.2.2/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKMETRO=$WORKSPACE/stack-metro
+STACKDIR=$WORKSPACE/stack-metro
JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKMETRO
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-4.2.3/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-4.2.3/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKMETRO=$WORKSPACE/stack-metro
+STACKDIR=$WORKSPACE/stack-metro
JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKMETRO
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-5.0.0/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-5.0.0/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-5.0.0/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKMETRO=$WORKSPACE/stack-metro
+STACKDIR=$WORKSPACE/stack-metro
JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKMETRO
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-5.0.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-5.0.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Metro-Distro-AS-5.0.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKMETRO=$WORKSPACE/stack-metro
+STACKDIR=$WORKSPACE/stack-metro
JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKMETRO
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-4.2.2/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-4.2.2/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-4.2.2/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKMETRO=$WORKSPACE/stack-metro
+STACKDIR=$WORKSPACE/stack-metro
JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKMETRO
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss422
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-4.2.3/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-4.2.3/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKMETRO=$WORKSPACE/stack-metro
+STACKDIR=$WORKSPACE/stack-metro
JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKMETRO
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss423
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-5.0.0/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-5.0.0/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-5.0.0/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKMETRO=$WORKSPACE/stack-metro
+STACKDIR=$WORKSPACE/stack-metro
JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKMETRO
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss500
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-5.0.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-5.0.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Metro-Integration-AS-5.0.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKMETRO=$WORKSPACE/stack-metro
+STACKDIR=$WORKSPACE/stack-metro
JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKMETRO
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss501
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss421
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.1/workspace/JBossAS-4.2.1/build/output/(a)hudson.jboss421.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss421
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET -Dinterop=true test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.2/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.2/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.2/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss422
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET -Dinterop=true test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.2-JDK6/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.2-JDK6/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.2-JDK6/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
@@ -39,7 +39,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss422
@@ -66,7 +66,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET -Dinterop=true test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.3/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.3/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss423
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET -Dinterop=true test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.3-JDK6/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.3-JDK6/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-4.2.3-JDK6/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
@@ -39,7 +39,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss423
@@ -66,7 +66,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET -Dinterop=true test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.0/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.0/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.0/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss500
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET -Dinterop=true test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.0-JDK6/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.0-JDK6/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.0-JDK6/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
@@ -39,7 +39,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss500
@@ -66,7 +66,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET -Dinterop=true test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss501
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET -Dinterop=true test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.1-JDK6/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.1-JDK6/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Core-AS-5.0.1-JDK6/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
@@ -39,7 +39,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss501
@@ -66,7 +66,8 @@
# execute tests
#
mvn $ENVIRONMENT -Ptestsuite,hudson,$JBOSS_TARGET -Dinterop=true test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss421
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.1/workspace/JBossAS-4.2.1/build/output/(a)hudson.jboss421.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2-JDK6/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2-JDK6/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.2-JDK6/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
@@ -39,7 +39,7 @@
#
# Build distro
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -72,7 +72,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-4.2.3-JDK6/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
@@ -39,7 +39,7 @@
#
# Build distro
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -72,7 +72,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.0/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.0/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.0/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.0-JDK6/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.0-JDK6/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.0-JDK6/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
@@ -39,7 +39,7 @@
#
# Build distro
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -72,7 +72,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
@@ -24,7 +24,7 @@
#
# Build distro
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -57,7 +57,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.1-JDK6/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.1-JDK6/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Distro-AS-5.0.1-JDK6/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
@@ -39,7 +39,7 @@
#
# Build distro
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT build-bin-dist
@@ -72,7 +72,8 @@
# execute tests
#
ant $ENVIRONMENT tests-clean tests 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss421
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.1/workspace/JBossAS-4.2.1/build/output/(a)hudson.jboss421.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss421
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.2/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.2/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.2/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss422
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.2-JDK6/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.2-JDK6/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.2-JDK6/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss422
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.2/workspace/JBossAS-4.2.2/build/output/(a)hudson.jboss422.build@
@@ -39,7 +39,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss422
@@ -66,7 +66,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.3/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.3/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.3/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss423
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.3-JDK6/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.3-JDK6/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-4.2.3-JDK6/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss423
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-4.2.3/workspace/JBossAS-4.2.3/build/output/(a)hudson.jboss423.build@
@@ -39,7 +39,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss423
@@ -66,7 +66,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.0/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.0/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.0/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss500
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.0-JDK6/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.0-JDK6/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.0-JDK6/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss500
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.0/workspace/JBossAS-5.0.0/build/output/(a)hudson.jboss500.build@
@@ -39,7 +39,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss500
@@ -66,7 +66,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.1/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.1/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.1/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
@@ -24,7 +24,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss501
@@ -51,7 +51,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.1-JDK6/config.xml
===================================================================
--- framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.1-JDK6/config.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/hudson/hudson-home/jobs/Native-Integration-AS-5.0.1-JDK6/config.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -10,7 +10,7 @@
WORKSPACE=`pwd`
FRAMEWORKDIR=$WORKSPACE/framework
-STACKNATIVE=$WORKSPACE/stack-native
+STACKDIR=$WORKSPACE/stack-native
JBOSS_TARGET=jboss501
JBOSS_BINDADDR=(a)jboss.bind.address@
JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0.1/workspace/JBossAS-5.0.1/build/output/(a)hudson.jboss501.build@
@@ -39,7 +39,7 @@
#
# build and deploy
#
-cd $STACKNATIVE
+cd $STACKDIR
cp profiles.xml.example profiles.xml
mvn -Ptestsuite clean
ant $ENVIRONMENT deploy-jboss501
@@ -66,7 +66,8 @@
# execute tests
#
mvn $ENVIRONMENT -Psmoketest,hudson,$JBOSS_TARGET test 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $STACKDIR/modules/testsuite/test-excludes-$JBOSS_TARGET.txt $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$JBOSS_TARGET.txt
#
# stop jbossas
Modified: framework/trunk/pom.xml
===================================================================
--- framework/trunk/pom.xml 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/pom.xml 2008-06-19 10:58:36 UTC (rev 7660)
@@ -25,8 +25,8 @@
<!-- Properties -->
<properties>
- <jbossws.common.version>1.0.5-SNAPSHOT</jbossws.common.version>
- <jbossws.spi.version>1.0.4-SNAPSHOT</jbossws.spi.version>
+ <jbossws.common.version>1.0.6-SNAPSHOT</jbossws.common.version>
+ <jbossws.spi.version>1.0.5-SNAPSHOT</jbossws.spi.version>
<jboss.common.version>1.2.1.GA</jboss.common.version>
<jbossxb.version>1.0.0.SP1</jbossxb.version>
</properties>
Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/context/WebServiceContextEJBTestCase.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/context/WebServiceContextEJBTestCase.java 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/context/WebServiceContextEJBTestCase.java 2008-06-19 10:58:36 UTC (rev 7660)
@@ -75,13 +75,13 @@
{
if (isIntegrationMetro())
{
- System.out.println("FIXME: [2204] Implement Metro standard message context properties");
+ System.out.println("FIXME: [JBWS-2204] Implement Metro standard message context properties");
return;
}
if (isIntegrationCXF())
{
- System.out.println("FIXME: [2203] Implement CXF standard message context properties");
+ System.out.println("FIXME: [JBWS-2203] Implement CXF standard message context properties");
return;
}
Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/context/WebServiceContextJSETestCase.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/context/WebServiceContextJSETestCase.java 2008-06-19 10:55:06 UTC (rev 7659)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/context/WebServiceContextJSETestCase.java 2008-06-19 10:58:36 UTC (rev 7660)
@@ -75,13 +75,13 @@
{
if (isIntegrationMetro())
{
- System.out.println("FIXME: [2204] Implement Metro standard message context properties");
+ System.out.println("FIXME: [JBWS-2204] Implement Metro standard message context properties");
return;
}
if (isIntegrationCXF())
{
- System.out.println("FIXME: [2203] Implement CXF standard message context properties");
+ System.out.println("FIXME: [JBWS-2203] Implement CXF standard message context properties");
return;
}
16 years, 9 months
JBossWS SVN: r7659 - common/branches.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2008-06-19 06:55:06 -0400 (Thu, 19 Jun 2008)
New Revision: 7659
Added:
common/branches/jbossws-common-1.0.0.GA_CP/
Log:
[JBPAPP-902] jbossws-common CP branch.
Copied: common/branches/jbossws-common-1.0.0.GA_CP (from rev 7658, common/tags/jbossws-common-1.0.0.GA)
16 years, 9 months
JBossWS SVN: r7658 - container/jboss50/trunk.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-06-19 06:50:36 -0400 (Thu, 19 Jun 2008)
New Revision: 7658
Modified:
container/jboss50/trunk/.classpath
container/jboss50/trunk/pom.xml
Log:
sync with -r74826
Modified: container/jboss50/trunk/.classpath
===================================================================
--- container/jboss50/trunk/.classpath 2008-06-19 10:30:10 UTC (rev 7657)
+++ container/jboss50/trunk/.classpath 2008-06-19 10:50:36 UTC (rev 7658)
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="src/main/java"/>
+ <classpathentry kind="src" output="target/classes" path="src/main/java"/>
+ <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/etc"/>
+ <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources/jbossws-jboss50.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
- <classpathentry kind="output" path="target/eclipse-classes"/>
+ <classpathentry kind="output" path="target/classes"/>
</classpath>
Modified: container/jboss50/trunk/pom.xml
===================================================================
--- container/jboss50/trunk/pom.xml 2008-06-19 10:30:10 UTC (rev 7657)
+++ container/jboss50/trunk/pom.xml 2008-06-19 10:50:36 UTC (rev 7658)
@@ -2,11 +2,11 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
- <name>JBoss Web Services - Container JBoss-5.0.1</name>
+ <name>JBoss Web Services - Container JBoss-5.0.0.x</name>
<groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-jboss501</artifactId>
+ <artifactId>jbossws-jboss500x</artifactId>
- <version>3.0.3-SNAPSHOT</version>
+ <version>3.0.2-SNAPSHOT</version>
<!-- Parent -->
<parent>
@@ -33,13 +33,13 @@
-->
<jboss.version>5.0.0-SNAPSHOT</jboss.version>
<jboss.ejb3.version>0.1.4</jboss.ejb3.version>
- <jboss.deployers.version>2.0.0.Beta16</jboss.deployers.version>
+ <jboss.deployers.version>2.0.0.Beta17</jboss.deployers.version>
<jboss.jbossxb.version>2.0.0.CR10</jboss.jbossxb.version>
<jboss.metadata.version>1.0.0.Beta20</jboss.metadata.version>
<jboss.microcontainer.version>2.0.0.Beta15</jboss.microcontainer.version>
<jboss.reflect.version>2.0.0.Beta12</jboss.reflect.version>
- <jboss.security.version>2.0.2.CR3</jboss.security.version>
- <jboss.vfs.version>2.0.0.Beta15</jboss.vfs.version>
+ <jboss.security.version>2.0.2.CR4</jboss.security.version>
+ <jboss.vfs.version>2.0.0.Beta18</jboss.vfs.version>
</properties>
<!-- DependencyManagement -->
16 years, 9 months
JBossWS SVN: r7657 - common/trunk.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-06-19 06:30:10 -0400 (Thu, 19 Jun 2008)
New Revision: 7657
Modified:
common/trunk/pom.xml
Log:
fix spi version to be used
Modified: common/trunk/pom.xml
===================================================================
--- common/trunk/pom.xml 2008-06-19 10:23:04 UTC (rev 7656)
+++ common/trunk/pom.xml 2008-06-19 10:30:10 UTC (rev 7657)
@@ -29,7 +29,7 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>1.0.4-SNAPSHOT</jbossws.spi.version>
+ <jbossws.spi.version>1.0.5-SNAPSHOT</jbossws.spi.version>
<jboss.common.version>1.2.1.GA</jboss.common.version>
<jboss.microcontainer.version>1.0.2</jboss.microcontainer.version>
</properties>
16 years, 9 months
JBossWS SVN: r7656 - spi/trunk.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-06-19 06:23:04 -0400 (Thu, 19 Jun 2008)
New Revision: 7656
Removed:
spi/trunk/ant.properties.example
spi/trunk/build.xml
Log:
sync spi trunk with QA branch
Deleted: spi/trunk/ant.properties.example
===================================================================
--- spi/trunk/ant.properties.example 2008-06-19 10:19:43 UTC (rev 7655)
+++ spi/trunk/ant.properties.example 2008-06-19 10:23:04 UTC (rev 7656)
@@ -1,7 +0,0 @@
-#
-# A sample ant properties file
-#
-# $Id: ant.properties.example 3995 2007-07-26 08:52:45Z thomas.diesler(a)jboss.com $
-
-# JBossWS local repository
-jboss.local.repository=/home/tdiesler/svn/jboss.local.repository
\ No newline at end of file
Deleted: spi/trunk/build.xml
===================================================================
--- spi/trunk/build.xml 2008-06-19 10:19:43 UTC (rev 7655)
+++ spi/trunk/build.xml 2008-06-19 10:23:04 UTC (rev 7656)
@@ -1,77 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- ====================================================================== -->
-<!-- -->
-<!-- JBoss, the OpenSource J2EE webOS -->
-<!-- -->
-<!-- Distributable under LGPL license. -->
-<!-- See terms of license at http://www.gnu.org. -->
-<!-- -->
-<!-- ====================================================================== -->
-
-<!-- $Id$ -->
-
-<project name="JBossWS-SPI" default="main" basedir=".">
-
- <!-- ================================================================== -->
- <!-- Setup -->
- <!-- ================================================================== -->
-
- <property name="spi.dir" value="${basedir}"/>
- <property name="spi.etc.dir" value="${spi.dir}/src/main/etc"/>
- <property name="spi.target.dir" value="${spi.dir}/target"/>
-
- <!-- ================================================================== -->
- <!-- Initialization -->
- <!-- ================================================================== -->
-
- <target name="init">
-
- <!-- Check if ant.properties is available -->
- <available property="ant.properties.available" file="${basedir}/ant.properties"/>
- <fail message="Cannot find ant.properties. Did you copy/edit ant.properties.example?" unless="ant.properties.available"/>
-
- <property file="${spi.dir}/ant.properties"/>
-
- <xmlproperty file="${spi.dir}/pom.xml"/>
- <property name="version.id" value="${project.version}"/>
- <property name="repository.id" value="${project.version}"/>
-
- <echo message="version.id=${version.id}"/>
- <echo message="repository.id=${repository.id}"/>
- </target>
-
- <!-- ================================================================== -->
- <!-- Installation -->
- <!-- ================================================================== -->
-
- <!-- Install to jboss.local.repository -->
- <target name="install" depends="init" description="Install to jboss.local.repository">
-
- <!-- Check if the target jar is available -->
- <available property="jbossws.spi.jar.available" file="${spi.target.dir}/jbossws-spi-${version.id}.jar"/>
- <fail message="Cannot find jbossws-spi-${version.id}.jar. Did you run 'mvn package'?" unless="jbossws.spi.jar.available"/>
-
- <!-- Check if the source jar is available -->
- <available property="jbossws.spi.sources.jar.available" file="${spi.target.dir}/jbossws-spi-${version.id}-sources.jar"/>
- <fail message="Cannot find jbossws-spi-${version.id}-sources.jar. Did you run 'mvn source:jar'?" unless="jbossws.spi.sources.jar.available"/>
-
- <!-- jboss/jbossws-spi -->
- <property name="jboss.repository.dir" value="${jboss.local.repository}/jboss"/>
- <mkdir dir="${jboss.repository.dir}/jbossws-spi/${repository.id}/lib"/>
- <copy file="${spi.target.dir}/jbossws-spi-${version.id}.jar" tofile="${jboss.repository.dir}/jbossws-spi/${repository.id}/lib/jbossws-spi.jar" overwrite="true"/>
- <copy file="${spi.target.dir}/jbossws-spi-${version.id}-sources.jar" tofile="${jboss.repository.dir}/jbossws-spi/${repository.id}/lib/jbossws-spi-src.jar" overwrite="true"/>
- <copy file="${spi.target.dir}/etc/component-info.xml" tofile="${jboss.repository.dir}/jbossws-spi/${repository.id}/component-info.xml" overwrite="true"/>
- </target>
-
- <!-- ================================================================== -->
- <!-- Miscellaneous -->
- <!-- ================================================================== -->
-
- <target name="clean" depends="init" description="Cleans up most generated files.">
- <delete dir="${spi.target.dir}"/>
- </target>
-
- <target name="main" description="Executes the default target (install)." depends="install"/>
-
-</project>
16 years, 9 months
JBossWS SVN: r7655 - stack/native/branches/jbossws-native-3.0.2.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-06-19 06:19:43 -0400 (Thu, 19 Jun 2008)
New Revision: 7655
Modified:
stack/native/branches/jbossws-native-3.0.2/pom.xml
Log:
jbossws.jboss501.version=3.0.2-SNAPSHOT
Modified: stack/native/branches/jbossws-native-3.0.2/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.2/pom.xml 2008-06-19 10:06:48 UTC (rev 7654)
+++ stack/native/branches/jbossws-native-3.0.2/pom.xml 2008-06-19 10:19:43 UTC (rev 7655)
@@ -58,7 +58,7 @@
<jbossws.jboss422.version>3.0.2.GA</jbossws.jboss422.version>
<jbossws.jboss423.version>3.0.2.GA</jbossws.jboss423.version>
<jbossws.jboss500.version>3.0.2.GA</jbossws.jboss500.version>
- <jbossws.jboss501.version>3.0.2.GA</jbossws.jboss501.version>
+ <jbossws.jboss501.version>3.0.2-SNAPSHOT</jbossws.jboss501.version>
<codehaus.jettison.version>1.0-RC2</codehaus.jettison.version>
<commons.logging.version>1.1.1</commons.logging.version>
<javassist.version>3.6.0.GA</javassist.version>
16 years, 9 months
JBossWS SVN: r7654 - stack/native/branches.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-06-19 06:06:48 -0400 (Thu, 19 Jun 2008)
New Revision: 7654
Added:
stack/native/branches/jbossws-native-3.0.2/
Log:
Create branch jbossws-native-3.0.2
Copied: stack/native/branches/jbossws-native-3.0.2 (from rev 7653, stack/native/tags/jbossws-native-3.0.2.GA)
16 years, 9 months
JBossWS SVN: r7652 - in stack/metro: tags and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-06-18 13:11:20 -0400 (Wed, 18 Jun 2008)
New Revision: 7652
Added:
stack/metro/tags/jbossws-metro-3.0.2.GA/
Removed:
stack/metro/branches/jbossws-metro-3.0.2/
Log:
tag metro
Copied: stack/metro/tags/jbossws-metro-3.0.2.GA (from rev 7651, stack/metro/branches/jbossws-metro-3.0.2)
16 years, 9 months
JBossWS SVN: r7651 - in stack/cxf: tags and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-06-18 13:09:16 -0400 (Wed, 18 Jun 2008)
New Revision: 7651
Added:
stack/cxf/tags/jbossws-cxf-3.0.2.GA/
Removed:
stack/cxf/branches/jbossws-cxf-3.0.2/
Log:
tag cxf
Copied: stack/cxf/tags/jbossws-cxf-3.0.2.GA (from rev 7650, stack/cxf/branches/jbossws-cxf-3.0.2)
16 years, 9 months