Bug 493748 Refactor xpcshell test harness to enable it to work for remote devices r=ted (comment 14) p=jmaher Landing on a CLOSED TREE

This commit is contained in:
Joel Maher
2010-03-12 14:57:29 -08:00
parent ba187a42e1
commit ef2e825068
2 changed files with 296 additions and 142 deletions

View File

@@ -46,6 +46,7 @@ __all__ = [
"processLeakLog",
"getDebuggerInfo",
"DEBUGGER_INFO",
"replaceBackSlashes",
]
# Map of debugging programs to information about them, like default arguments
@@ -323,3 +324,6 @@ def processLeakLog(leakLogFile, leakThreshold = 0):
processType = m.group(1)
processPID = m.group(2)
processSingleLeakFile(thisFile, processPID, processType, leakThreshold)
def replaceBackSlashes(input):
return input.replace('\\', '/')