JBoss Native SVN: r2684 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2010-05-28 08:02:38 -0400 (Fri, 28 May 2010)
New Revision: 2684
Modified:
trunk/build/unix/buildtest.TC7.sh
Log:
Weel do nothing for the moment...
Modified: trunk/build/unix/buildtest.TC7.sh
===================================================================
--- trunk/build/unix/buildtest.TC7.sh 2010-05-28 11:22:32 UTC (rev 2683)
+++ trunk/build/unix/buildtest.TC7.sh 2010-05-28 12:02:38 UTC (rev 2684)
@@ -39,13 +39,6 @@
echo "Running : `basename $0` $LastChangedDate: 2009-10-29 08:26:17 +0100 (Thu, 29 Oct 2009) $"
echo ""
-(cd ${root}
-./bin/startup.sh
-sleep 10
-curl -v http://localhost:8080/NOT_FOUND 2>&1 | grep "Apache Tomcat/7" || exit 1
-./bin/shutdown.sh
-) || exit 1
-
echo ""
echo "SUCCESS : `basename $0` $LastChangedDate: 2009-10-29 08:26:17 +0100 (Thu, 29 Oct 2009) $"
echo ""
14 years, 5 months
JBoss Native SVN: r2683 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2010-05-28 07:22:32 -0400 (Fri, 28 May 2010)
New Revision: 2683
Modified:
trunk/build/unix/buildtest.TC7.sh
Log:
Arrange permissions.
Property changes on: trunk/build/unix/buildtest.TC7.sh
___________________________________________________________________
Name: svn:executable
+ *
14 years, 5 months
JBoss Native SVN: r2682 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2010-05-28 06:21:09 -0400 (Fri, 28 May 2010)
New Revision: 2682
Modified:
trunk/build/unix/buildbin.TC7.sh
Log:
Allow unsafe tests...
Modified: trunk/build/unix/buildbin.TC7.sh
===================================================================
--- trunk/build/unix/buildbin.TC7.sh 2010-05-26 12:56:11 UTC (rev 2681)
+++ trunk/build/unix/buildbin.TC7.sh 2010-05-28 10:21:09 UTC (rev 2682)
@@ -77,7 +77,7 @@
sed "/@SSL_CONNECTOR@/r $HOME/tcks/conf/server.xml.jce" $HOME/tcks/conf/server.xml | sed "/@SSL_CONNECTOR@/d" > $native_sources/output/build/conf/server.xml
cat > $native_sources/output/build/bin/setenv.sh << EOF
-JAVA_OPTS="$JAVA_OPTS -Dorg.apache.catalina.STRICT_SERVLET_COMPLIANCE=true -Dorg.apache.tomcat.util.http.ServerCookie.FWD_SLASH_IS_SEPARATOR=false"
+JAVA_OPTS="$JAVA_OPTS -Dorg.apache.catalina.STRICT_SERVLET_COMPLIANCE=true -Dorg.apache.tomcat.util.http.ServerCookie.FWD_SLASH_IS_SEPARATOR=false -Dsun.security.ssl.allowUnsafeRenegotiation=true"
export JAVA_OPTS
EOF
14 years, 5 months
JBoss Native SVN: r2681 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2010-05-26 08:56:11 -0400 (Wed, 26 May 2010)
New Revision: 2681
Modified:
trunk/build/unix/buildbin.TC7.sh
Log:
Test with jce first.
Modified: trunk/build/unix/buildbin.TC7.sh
===================================================================
--- trunk/build/unix/buildbin.TC7.sh 2010-05-26 06:52:17 UTC (rev 2680)
+++ trunk/build/unix/buildbin.TC7.sh 2010-05-26 12:56:11 UTC (rev 2681)
@@ -74,7 +74,7 @@
echo "Running TCK tests"
cp $HOME/tcks/conf/* $native_sources/output/build/conf
(cd $HOME/tcks/servlet; bash install.sh $native_sources/output/build)
-sed "/@SSL_CONNECTOR@/r $HOME/tcks/conf/server.xml.apr" $HOME/tcks/conf/server.xml | sed "/@SSL_CONNECTOR@/d" > $native_sources/output/build/conf/server.xml
+sed "/@SSL_CONNECTOR@/r $HOME/tcks/conf/server.xml.jce" $HOME/tcks/conf/server.xml | sed "/@SSL_CONNECTOR@/d" > $native_sources/output/build/conf/server.xml
cat > $native_sources/output/build/bin/setenv.sh << EOF
JAVA_OPTS="$JAVA_OPTS -Dorg.apache.catalina.STRICT_SERVLET_COMPLIANCE=true -Dorg.apache.tomcat.util.http.ServerCookie.FWD_SLASH_IS_SEPARATOR=false"
14 years, 5 months
JBoss Native SVN: r2680 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2010-05-26 02:52:17 -0400 (Wed, 26 May 2010)
New Revision: 2680
Modified:
trunk/build/unix/buildbin.TC7.sh
Log:
Make sure we stop Tomcat before running tests...
Modified: trunk/build/unix/buildbin.TC7.sh
===================================================================
--- trunk/build/unix/buildbin.TC7.sh 2010-05-25 16:37:07 UTC (rev 2679)
+++ trunk/build/unix/buildbin.TC7.sh 2010-05-26 06:52:17 UTC (rev 2680)
@@ -54,7 +54,19 @@
native_sources=`(cd $native_sources; pwd)`
cd $native_sources
ant || exit 1
+
echo ""
+echo "Stopping tomcat (just in case)"
+echo ""
+(cd $native_sources/output/build; bin/shutdown.sh)
+sleep 10
+PID=`ps -ef | grep $native_sources | grep java | awk ' { print $2 } '`
+if [ x$PID != "x" ]; then
+ kill -15 $PID
+ sleep 10
+fi
+
+echo ""
echo "Running ant tests"
ant test || exit 1
echo "Ant test Done"
@@ -69,8 +81,6 @@
export JAVA_OPTS
EOF
-(cd $native_sources/output/build; bin/shutdown.sh)
-sleep 10
(cd $native_sources/output/build; bin/startup.sh)
echo ""
echo "Waiting for Tomcat to start"
14 years, 5 months
JBoss Native SVN: r2679 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2010-05-25 12:37:07 -0400 (Tue, 25 May 2010)
New Revision: 2679
Modified:
trunk/build/unix/package.list
Log:
Rollback r2678
Modified: trunk/build/unix/package.list
===================================================================
--- trunk/build/unix/package.list 2010-05-25 15:16:15 UTC (rev 2678)
+++ trunk/build/unix/package.list 2010-05-25 16:37:07 UTC (rev 2679)
@@ -43,7 +43,7 @@
mod_cluster|1.1.0.CR1|2.2.15|ssl:v:0.9.8k|zlib:v:1.2.3|jk:v:1.2.30|iconv:v:1.11|expat:v:1.95.8|cluster:t:1.1.0.CR1
mod_cluster|1.1.0.dev|2.2.15|ssl:v:0.9.8k|zlib:v:1.2.3|jk:v:1.2.30|iconv:v:1.11|expat:v:1.95.8|cluster:t:trunk
mod_cluster|1.0.4.dev|2.2.15|ssl:v:0.9.8k|zlib:v:1.2.3|jk:v:1.2.30|iconv:v:1.11|expat:v:1.95.8|cluster:t:branches/1.0.x
+mod_cluster|1.1.0.CR2|2.2.15|ssl:v:0.9.8k|zlib:v:1.2.3|jk:v:1.2.30|iconv:v:1.11|expat:v:1.95.8|cluster:t:1.1.0.CR2
mod_cluster|1.1.0.dev|2.2.15|ssl:v:0.9.8k|zlib:v:1.2.3|jk:v:1.2.30|iconv:v:1.11|expat:v:1.95.8|cluster:t:trunk
-mod_cluster|1.1.0.CR2|2.2.15|ssl:v:0.9.8k|zlib:v:1.2.3|jk:v:1.2.30|iconv:v:1.11|expat:v:1.95.8|cluster:t:1.1.0.CR2
traffic_server|TS_Trunk|trunk
TC7|TC7_Trunk|trunk
14 years, 5 months
JBoss Native SVN: r2678 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2010-05-25 11:16:15 -0400 (Tue, 25 May 2010)
New Revision: 2678
Modified:
trunk/build/unix/package.list
Log:
Try CR2 again...
Modified: trunk/build/unix/package.list
===================================================================
--- trunk/build/unix/package.list 2010-05-25 15:01:34 UTC (rev 2677)
+++ trunk/build/unix/package.list 2010-05-25 15:16:15 UTC (rev 2678)
@@ -43,7 +43,7 @@
mod_cluster|1.1.0.CR1|2.2.15|ssl:v:0.9.8k|zlib:v:1.2.3|jk:v:1.2.30|iconv:v:1.11|expat:v:1.95.8|cluster:t:1.1.0.CR1
mod_cluster|1.1.0.dev|2.2.15|ssl:v:0.9.8k|zlib:v:1.2.3|jk:v:1.2.30|iconv:v:1.11|expat:v:1.95.8|cluster:t:trunk
mod_cluster|1.0.4.dev|2.2.15|ssl:v:0.9.8k|zlib:v:1.2.3|jk:v:1.2.30|iconv:v:1.11|expat:v:1.95.8|cluster:t:branches/1.0.x
+mod_cluster|1.1.0.dev|2.2.15|ssl:v:0.9.8k|zlib:v:1.2.3|jk:v:1.2.30|iconv:v:1.11|expat:v:1.95.8|cluster:t:trunk
mod_cluster|1.1.0.CR2|2.2.15|ssl:v:0.9.8k|zlib:v:1.2.3|jk:v:1.2.30|iconv:v:1.11|expat:v:1.95.8|cluster:t:1.1.0.CR2
-mod_cluster|1.1.0.dev|2.2.15|ssl:v:0.9.8k|zlib:v:1.2.3|jk:v:1.2.30|iconv:v:1.11|expat:v:1.95.8|cluster:t:trunk
traffic_server|TS_Trunk|trunk
TC7|TC7_Trunk|trunk
14 years, 5 months
JBoss Native SVN: r2677 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2010-05-25 11:01:34 -0400 (Tue, 25 May 2010)
New Revision: 2677
Modified:
trunk/build/unix/buildbin.TC7.sh
Log:
stop tomcat after (and before starting it).
Modified: trunk/build/unix/buildbin.TC7.sh
===================================================================
--- trunk/build/unix/buildbin.TC7.sh 2010-05-25 14:29:29 UTC (rev 2676)
+++ trunk/build/unix/buildbin.TC7.sh 2010-05-25 15:01:34 UTC (rev 2677)
@@ -69,6 +69,8 @@
export JAVA_OPTS
EOF
+(cd $native_sources/output/build; bin/shutdown.sh)
+sleep 10
(cd $native_sources/output/build; bin/startup.sh)
echo ""
echo "Waiting for Tomcat to start"
@@ -79,5 +81,8 @@
export ANT_HOME=$TS_HOME/tools/ant
(cd $TS_HOME/bin; ant run.all || exit 1) || exit 1
(cd $TS_HOME/bin; ant report || exit 1) || exit 1
+(cd $native_sources/output/build; bin/shutdown.sh)
+echo ""
echo "Done"
+echo ""
exit 0
14 years, 5 months
JBoss Native SVN: r2676 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2010-05-25 10:29:29 -0400 (Tue, 25 May 2010)
New Revision: 2676
Modified:
trunk/build/unix/buildbin.TC7.sh
Log:
iAdd missing setenv.sh and arrange SSL parameters.
Modified: trunk/build/unix/buildbin.TC7.sh
===================================================================
--- trunk/build/unix/buildbin.TC7.sh 2010-05-25 12:40:23 UTC (rev 2675)
+++ trunk/build/unix/buildbin.TC7.sh 2010-05-25 14:29:29 UTC (rev 2676)
@@ -61,8 +61,14 @@
echo ""
echo "Running TCK tests"
cp $HOME/tcks/conf/* $native_sources/output/build/conf
-sed '/@SSL_CONNECTOR@/ r $HOME/tcks/conf/server.xml.apr' < $HOME/tcks/conf/server.xml > $native_sources/output/build/conf/server.xml
(cd $HOME/tcks/servlet; bash install.sh $native_sources/output/build)
+sed "/@SSL_CONNECTOR@/r $HOME/tcks/conf/server.xml.apr" $HOME/tcks/conf/server.xml | sed "/@SSL_CONNECTOR@/d" > $native_sources/output/build/conf/server.xml
+
+cat > $native_sources/output/build/bin/setenv.sh << EOF
+JAVA_OPTS="$JAVA_OPTS -Dorg.apache.catalina.STRICT_SERVLET_COMPLIANCE=true -Dorg.apache.tomcat.util.http.ServerCookie.FWD_SLASH_IS_SEPARATOR=false"
+export JAVA_OPTS
+EOF
+
(cd $native_sources/output/build; bin/startup.sh)
echo ""
echo "Waiting for Tomcat to start"
14 years, 5 months
JBoss Native SVN: r2675 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2010-05-25 08:40:23 -0400 (Tue, 25 May 2010)
New Revision: 2675
Modified:
trunk/build/unix/buildbin.TC7.sh
Log:
Wrong location.
Modified: trunk/build/unix/buildbin.TC7.sh
===================================================================
--- trunk/build/unix/buildbin.TC7.sh 2010-05-25 11:53:21 UTC (rev 2674)
+++ trunk/build/unix/buildbin.TC7.sh 2010-05-25 12:40:23 UTC (rev 2675)
@@ -62,7 +62,7 @@
echo "Running TCK tests"
cp $HOME/tcks/conf/* $native_sources/output/build/conf
sed '/@SSL_CONNECTOR@/ r $HOME/tcks/conf/server.xml.apr' < $HOME/tcks/conf/server.xml > $native_sources/output/build/conf/server.xml
-(cd $HOME/tcks/servlet; bash install.sh $native_sources/output/build/conf)
+(cd $HOME/tcks/servlet; bash install.sh $native_sources/output/build)
(cd $native_sources/output/build; bin/startup.sh)
echo ""
echo "Waiting for Tomcat to start"
14 years, 5 months