patching to make tests robust again

This commit is contained in:
Tully Foote 2010-06-15 02:48:55 +00:00
parent 4bd6ed58fc
commit b8a6694974
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ class BuildQueue:
for p in self.to_build:
dependencies_met = True
for d in self.dependency_tracker.get_deps(p):
if d not in self.built:
if d not in self.built and not (self.robust_build and d in self.failed):
dependencies_met = False
#print "Dependency %s not met for %s"%(d, p)
break