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/05/06 10:50:52 UTC

svn commit: r168575 - /gump/branches/Gump3/pygump/python/gump/engine/algorithm.py

Author: leosimons
Date: Fri May  6 01:50:52 2005
New Revision: 168575

URL: http://svn.apache.org/viewcvs?rev=168575&view=rev
Log:
Fix a bug with circular cause specs.

* pygump/python/gump/engine/algorithm.py: don't mark a command as its own cause; that messes with our root cause detection logic.

Modified:
    gump/branches/Gump3/pygump/python/gump/engine/algorithm.py

Modified: gump/branches/Gump3/pygump/python/gump/engine/algorithm.py
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/pygump/python/gump/engine/algorithm.py?rev=168575&r1=168574&r2=168575&view=diff
==============================================================================
--- gump/branches/Gump3/pygump/python/gump/engine/algorithm.py (original)
+++ gump/branches/Gump3/pygump/python/gump/engine/algorithm.py Fri May  6 01:50:52 2005
@@ -198,5 +198,5 @@
             # blame commands that went awry
             for command in project.commands:
                 if getattr(command, "build_exit_status", False):
-                    mark_failure(command, command)
+                    #mark_failure(command, command)
                     mark_failure(project, command)