summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-01-03 16:32:36 +0000
committerMoonchild <moonchild@palemoon.org>2022-01-03 16:32:36 +0000
commit1699dbe78bf43eaa5ef4c593f075dfdc59c02b15 (patch)
treeec58dddc0fa6b240567a2362a525bb00ac9901b0 /testing
parentbca6f8a4592bb03a25b8228392e5e2b58a39cc82 (diff)
downloadaura-central-1699dbe78bf43eaa5ef4c593f075dfdc59c02b15.tar.gz
Issue %3015 - Part 3: Remove GMP code from addons, crash handler and tests.
Diffstat (limited to 'testing')
-rw-r--r--testing/mochitest/runtests.py8
-rw-r--r--testing/mochitest/runtestsremote.py4
2 files changed, 0 insertions, 12 deletions
diff --git a/testing/mochitest/runtests.py b/testing/mochitest/runtests.py
index 6763952af..f52a83672 100644
--- a/testing/mochitest/runtests.py
+++ b/testing/mochitest/runtests.py
@@ -1499,14 +1499,6 @@ toolbar#nav-bar {
if not self.disable_leak_checking:
browserEnv["XPCOM_MEM_BLOAT_LOG"] = self.leak_report_file
- try:
- gmp_path = self.getGMPPluginPath(options)
- if gmp_path is not None:
- browserEnv["MOZ_GMP_PATH"] = gmp_path
- except EnvironmentError:
- self.log.error('Could not find path to gmp-fake plugin!')
- return None
-
if options.fatalAssertions:
browserEnv["XPCOM_DEBUG_BREAK"] = "stack-and-abort"
diff --git a/testing/mochitest/runtestsremote.py b/testing/mochitest/runtestsremote.py
index 8010703e9..a6f264a36 100644
--- a/testing/mochitest/runtestsremote.py
+++ b/testing/mochitest/runtestsremote.py
@@ -256,10 +256,6 @@ class MochiRemote(MochitestDesktop):
except mozdevice.DMError:
self.log.warning("Error getting device information")
- def getGMPPluginPath(self, options):
- # TODO: bug 1149374
- return None
-
def buildBrowserEnv(self, options, debugger=False):
browserEnv = MochitestDesktop.buildBrowserEnv(
self,