You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by le...@apache.org on 2005/06/24 14:57:45 UTC

svn commit: r201609 - /gump/branches/Gump3/gump

Author: leosimons
Date: Fri Jun 24 05:57:45 2005
New Revision: 201609

URL: http://svn.apache.org/viewcvs?rev=201609&view=rev
Log:
Add the proper -i and -e flags to the unit test runner.

gump: need to pass some more options to pylid to detail what our environment looks like.

Modified:
    gump/branches/Gump3/gump

Modified: gump/branches/Gump3/gump
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/gump?rev=201609&r1=201608&r2=201609&view=diff
==============================================================================
--- gump/branches/Gump3/gump (original)
+++ gump/branches/Gump3/gump Fri Jun 24 05:57:45 2005
@@ -658,12 +658,15 @@
   lock
   
   if [[ ! -z "$GUMP_CYGWIN" ]]; then
-    $GUMP_PYTHON `cygpath -w $GUMP_HOME/bin/pylid-0.3/pylid.py` \
-      -c -v -b `cygpath -w $GUMP_HOME/pygump:$GUMP_HOME/pygump/python` \
+    $GUMP_PYTHON `cygpath -w $GUMP_HOME/bin/pylid-0.3/pylid.py` -c -v \
+      -b `cygpath -w $GUMP_HOME/pygump` -b `cygpath -w $GUMP_HOME/pygump/python` \
+      -i `cygpath -w $GUMP_HOME/pygump` -i `cygpath -w $GUMP_HOME/pygump/python` \
       `cygpath -w $GUMP_HOME/pygump/python/gump/test` $@
   else
-    $GUMP_PYTHON $GUMP_HOME/bin/pylid-0.3/pylid.py -c -v -b \
-      $GUMP_HOME/pygump:$GUMP_HOME/pygump/python \
+    $GUMP_PYTHON $GUMP_HOME/bin/pylid-0.3/pylid.py -c -v \
+      -b $GUMP_HOME/pygump -b $GUMP_HOME/pygump/python \
+      -i $GUMP_HOME/pygump -i $GUMP_HOME/pygump/python \
+      -e $GUMP_HOME/pygump/python/gump/test \
       $GUMP_HOME/pygump/python/gump/test $@
   fi