From 386d7458ae1a7115fc7f1b2205820bac32474ef8 Mon Sep 17 00:00:00 2001 From: Geoff Brown Date: Mon, 5 Oct 2015 15:37:20 -0600 Subject: [PATCH] Bug 1207461 - Fix symbols path for robocop crash reporting; r=jmaher --- testing/mochitest/runrobocop.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/mochitest/runrobocop.py b/testing/mochitest/runrobocop.py index bd4dd0e67f3..84165f3c7fc 100644 --- a/testing/mochitest/runrobocop.py +++ b/testing/mochitest/runrobocop.py @@ -438,7 +438,8 @@ class RobocopTestRunner(Mochitest): try: self.dm.recordLogcat() result = self.auto.runApp( - None, browserEnv, "am", self.localProfile, browserArgs, timeout=self.NO_OUTPUT_TIMEOUT) + None, browserEnv, "am", self.localProfile, browserArgs, + timeout=self.NO_OUTPUT_TIMEOUT, symbolsPath=self.options.symbolsPath) self.log.debug("runApp completes with status %d" % result) if result != 0: self.log.error("runApp() exited with code %s" % result)