From 71c43ed5e8c5c51e0821cf028b55ed5ca5d009ee Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Fri, 25 Sep 2009 12:47:51 -0400 Subject: [PATCH] Another fix for bug 485531, working around the bustage from bug 504480. r=ted --- build/automation.py.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/automation.py.in b/build/automation.py.in index 9e35cc2fe31..2da3f2e0c6d 100644 --- a/build/automation.py.in +++ b/build/automation.py.in @@ -436,6 +436,9 @@ def runApp(testURL, env, app, profileDir, extraArgs, debuggerInfo = None, symbolsPath = SYMBOLS_PATH): "Run the app, log the duration it took to execute, return the status code." + # copy env so we don't munge the caller's environment + env = dict(env); + if IS_TEST_BUILD and runSSLTunnel: # create certificate database for the profile certificateStatus = fillCertificateDB(profileDir, certPath, utilityPath, xrePath)