Backed out changeset aa6337822028

This commit is contained in:
Clint Talbert 2010-01-06 16:01:43 -06:00
parent 806e1586f4
commit b9266a5d55
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([this.PERL, os.path.join(utilityPath, stackFixerCommand)],
stackFixerProcess = self.Process([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