You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/04/02 20:33:46 UTC

svn commit: r1308449 - in /lucene/dev/nightly: hudson-lucene-3.x.sh hudson-lucene-trunk.sh hudson-lusolr-tests-3.x.sh hudson-lusolr-tests-trunk.sh hudson-solr-3.x.sh hudson-solr-trunk.sh

Author: rmuir
Date: Mon Apr  2 18:33:46 2012
New Revision: 1308449

URL: http://svn.apache.org/viewvc?rev=1308449&view=rev
Log:
SOLR-3268: fix 'exception-handling' bug, to report the dirty files we must use the jsvn, not system svn

Modified:
    lucene/dev/nightly/hudson-lucene-3.x.sh
    lucene/dev/nightly/hudson-lucene-trunk.sh
    lucene/dev/nightly/hudson-lusolr-tests-3.x.sh
    lucene/dev/nightly/hudson-lusolr-tests-trunk.sh
    lucene/dev/nightly/hudson-solr-3.x.sh
    lucene/dev/nightly/hudson-solr-trunk.sh

Modified: lucene/dev/nightly/hudson-lucene-3.x.sh
URL: http://svn.apache.org/viewvc/lucene/dev/nightly/hudson-lucene-3.x.sh?rev=1308449&r1=1308448&r2=1308449&view=diff
==============================================================================
--- lucene/dev/nightly/hudson-lucene-3.x.sh (original)
+++ lucene/dev/nightly/hudson-lucene-3.x.sh Mon Apr  2 18:33:46 2012
@@ -65,7 +65,7 @@ set +e
 $SVN_EXE status | grep '^\?' > /dev/null
 if [ $? = 0 ]; then
   printf "source checkout is dirty after running tests!!!!! offending files:\n"
-  svn status
+  $SVN_EXE status
   exit 1
 fi
 

Modified: lucene/dev/nightly/hudson-lucene-trunk.sh
URL: http://svn.apache.org/viewvc/lucene/dev/nightly/hudson-lucene-trunk.sh?rev=1308449&r1=1308448&r2=1308449&view=diff
==============================================================================
--- lucene/dev/nightly/hudson-lucene-trunk.sh (original)
+++ lucene/dev/nightly/hudson-lucene-trunk.sh Mon Apr  2 18:33:46 2012
@@ -88,7 +88,7 @@ set +e
 $SVN_EXE status | grep '^\?' > /dev/null
 if [ $? = 0 ]; then
   printf "source checkout is dirty after running tests!!!!! offending files:\n"
-  svn status
+  $SVN_EXE status
   exit 1
 fi
 

Modified: lucene/dev/nightly/hudson-lusolr-tests-3.x.sh
URL: http://svn.apache.org/viewvc/lucene/dev/nightly/hudson-lusolr-tests-3.x.sh?rev=1308449&r1=1308448&r2=1308449&view=diff
==============================================================================
--- lucene/dev/nightly/hudson-lusolr-tests-3.x.sh (original)
+++ lucene/dev/nightly/hudson-lusolr-tests-3.x.sh Mon Apr  2 18:33:46 2012
@@ -53,6 +53,6 @@ set +e
 $SVN_EXE status | grep '^\?' > /dev/null
 if [ $? = 0 ]; then
   printf "source checkout is dirty after running tests!!!!! offending files:\n"
-  svn status
+  $SVN_EXE status
   exit 1
 fi

Modified: lucene/dev/nightly/hudson-lusolr-tests-trunk.sh
URL: http://svn.apache.org/viewvc/lucene/dev/nightly/hudson-lusolr-tests-trunk.sh?rev=1308449&r1=1308448&r2=1308449&view=diff
==============================================================================
--- lucene/dev/nightly/hudson-lusolr-tests-trunk.sh (original)
+++ lucene/dev/nightly/hudson-lusolr-tests-trunk.sh Mon Apr  2 18:33:46 2012
@@ -42,6 +42,6 @@ set +e
 $SVN_EXE status | grep '^\?' > /dev/null
 if [ $? = 0 ]; then
   printf "source checkout is dirty after running tests!!!!! offending files:\n"
-  svn status
+  $SVN_EXE status
   exit 1
 fi

Modified: lucene/dev/nightly/hudson-solr-3.x.sh
URL: http://svn.apache.org/viewvc/lucene/dev/nightly/hudson-solr-3.x.sh?rev=1308449&r1=1308448&r2=1308449&view=diff
==============================================================================
--- lucene/dev/nightly/hudson-solr-3.x.sh (original)
+++ lucene/dev/nightly/hudson-solr-3.x.sh Mon Apr  2 18:33:46 2012
@@ -56,6 +56,6 @@ set +e
 $SVN_EXE status | grep '^\?' > /dev/null
 if [ $? = 0 ]; then
   printf "source checkout is dirty after running tests!!!!! offending files:\n"
-  svn status
+  $SVN_EXE status
   exit 1
 fi

Modified: lucene/dev/nightly/hudson-solr-trunk.sh
URL: http://svn.apache.org/viewvc/lucene/dev/nightly/hudson-solr-trunk.sh?rev=1308449&r1=1308448&r2=1308449&view=diff
==============================================================================
--- lucene/dev/nightly/hudson-solr-trunk.sh (original)
+++ lucene/dev/nightly/hudson-solr-trunk.sh Mon Apr  2 18:33:46 2012
@@ -52,6 +52,6 @@ set +e
 $SVN_EXE status | grep '^\?' > /dev/null
 if [ $? = 0 ]; then
   printf "source checkout is dirty after running tests!!!!! offending files:\n"
-  svn status
+  $SVN_EXE status
   exit 1
 fi