Bug 419487 - change buildbot & talos to use buildtime, not test-run time

p=anodelman r=bhearsum


git-svn-id: svn://10.0.0.236/trunk@252568 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
anodelman%mozilla.com
2008-06-25 15:35:41 +00:00
parent 9a2bf69b41
commit 8660061b1b
2 changed files with 6 additions and 6 deletions

View File

@@ -78,7 +78,7 @@ class LatestFileURL:
content = page.readlines()
opener.close()
except:
print "unable to retrieve page at: " + self.url
print "unable to retrieve page at: " + self.url + " dated: " + self.sortByDateString
return content
def _populateDict(self):
@@ -286,7 +286,7 @@ class MozillaUpdateConfig(ShellCommand):
kwargs['command'] = ["python", "PerfConfigurator.py", "-v",
"-e", self.exePath, "-c", self.configPath,
"-t", self.title, "-b", self.branch,
"-i", self.buildid]
"-d", self.buildid]
ShellCommand.__init__(self, **kwargs)
def describe(self, done=False):
@@ -481,8 +481,8 @@ class MozillaUpdateConfigFromChange(ShellCommand):
if not 'command' in kwargs:
kwargs['command'] = ["python", "PerfConfigurator.py", "-v", "-e",
self.exePath, "-c", self.configPath,
"-t", self.title, "-b", self.branch, "-d",
"-i", self.buildid]
"-t", self.title, "-b", self.branch,
"-d", self.buildid]
ShellCommand.__init__(self, **kwargs)
def describe(self, done=False):

View File

@@ -451,8 +451,8 @@ class MozillaUpdateConfigFromChange(ShellCommand):
if not 'command' in kwargs:
kwargs['command'] = ["python", "PerfConfigurator.py", "-v", "-e",
self.exePath, "-c", self.configPath,
"-t", self.title, "-b", self.branch, "-d",
"-i", self.buildid]
"-t", self.title, "-b", self.branch,
"-d", self.buildid]
ShellCommand.__init__(self, **kwargs)
def describe(self, done=False):