Follow-ups to fix bloat bustage and make xpcshell-test result reporting work with buildbot after the landing of bug 530475. r=ted over irc.

This commit is contained in:
Mark Banner 2010-01-06 19:59:12 +00:00
parent d9d325cc83
commit 9d86fe218d
2 changed files with 3 additions and 3 deletions

View File

@ -669,7 +669,7 @@ user_pref("camino.use_system_proxy_settings", false); // Camino-only, harmless t
elif self.IS_LINUX:
stackFixerCommand = "fix-linux-stack.pl"
if stackFixerCommand is not None:
stackFixerProcess = self.Process([PERL, os.path.join(utilityPath, stackFixerCommand)],
stackFixerProcess = self.Process([this.PERL, os.path.join(utilityPath, stackFixerCommand)],
stdin=logsource,
stdout=subprocess.PIPE)
logsource = stackFixerProcess.stdout

View File

@ -282,8 +282,8 @@ class XPCShellTests(object):
failCount = 1
print """INFO | Result summary:
INFO | Passed: %d
INFO | Failed: %d""" % (passCount, failCount)
INFO | Passed: %d
INFO | Failed: %d""" % (passCount, failCount)
return failCount == 0