Created
December 15, 2016 03:26
-
-
Save HackToday/76c7a767342d495dac0e6b815e0d3c2d to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
E | |
==================================== ERRORS ==================================== | |
_________ ERROR at setup of TestOnlineSupport.test_online_support_work _________ | |
request = <SubRequest 'driver' for <Function 'test_online_support_work'>> | |
driver_class = <class 'selenium.webdriver.firefox.webdriver.WebDriver'> | |
driver_kwargs = {'firefox_profile': <selenium.webdriver.firefox.firefox_profile.FirefoxProfile object at 0x1edba50>} | |
@pytest.yield_fixture | |
def driver(request, driver_class, driver_kwargs): | |
"""Returns a WebDriver instance based on options and capabilities""" | |
> driver = driver_class(**driver_kwargs) | |
/usr/lib/python2.7/site-packages/pytest_selenium/pytest_selenium.py:107: | |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ | |
/usr/lib/python2.7/site-packages/selenium/webdriver/firefox/webdriver.py:145: in __init__ | |
keep_alive=True) | |
/usr/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py:92: in __init__ | |
self.start_session(desired_capabilities, browser_profile) | |
/usr/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py:179: in start_session | |
response = self.execute(Command.NEW_SESSION, capabilities) | |
/usr/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.py:236: in execute | |
self.error_handler.check_response(response) | |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ | |
self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x1edb790> | |
response = {'status': 500, 'value': '{"error":"unknown error","message":"connection refused"}'} | |
def check_response(self, response): | |
""" | |
Checks that a JSON response from the WebDriver does not have an error. | |
:Args: | |
- response - The JSON response from the WebDriver server as a dictionary | |
object. | |
:Raises: If the response contains an error message. | |
""" | |
status = response.get('status', None) | |
if status is None or status == ErrorCode.SUCCESS: | |
return | |
value = None | |
message = response.get("message", "") | |
screen = response.get("screen", "") | |
stacktrace = None | |
if isinstance(status, int): | |
value_json = response.get('value', None) | |
if value_json and isinstance(value_json, basestring): | |
import json | |
try: | |
value = json.loads(value_json) | |
status = value.get('error', None) | |
if status is None: | |
status = value["status"] | |
message = value["value"] | |
if not isinstance(message, basestring): | |
value = message | |
try: | |
message = message['message'] | |
except TypeError: | |
message = None | |
else: | |
message = value.get('message', None) | |
except ValueError: | |
pass | |
exception_class = ErrorInResponseException | |
if status in ErrorCode.NO_SUCH_ELEMENT: | |
exception_class = NoSuchElementException | |
elif status in ErrorCode.NO_SUCH_FRAME: | |
exception_class = NoSuchFrameException | |
elif status in ErrorCode.NO_SUCH_WINDOW: | |
exception_class = NoSuchWindowException | |
elif status in ErrorCode.STALE_ELEMENT_REFERENCE: | |
exception_class = StaleElementReferenceException | |
elif status in ErrorCode.ELEMENT_NOT_VISIBLE: | |
exception_class = ElementNotVisibleException | |
elif status in ErrorCode.INVALID_ELEMENT_STATE: | |
exception_class = InvalidElementStateException | |
elif status in ErrorCode.INVALID_SELECTOR \ | |
or status in ErrorCode.INVALID_XPATH_SELECTOR \ | |
or status in ErrorCode.INVALID_XPATH_SELECTOR_RETURN_TYPER: | |
exception_class = InvalidSelectorException | |
elif status in ErrorCode.ELEMENT_IS_NOT_SELECTABLE: | |
exception_class = ElementNotSelectableException | |
elif status in ErrorCode.INVALID_COOKIE_DOMAIN: | |
exception_class = WebDriverException | |
elif status in ErrorCode.UNABLE_TO_SET_COOKIE: | |
exception_class = WebDriverException | |
elif status in ErrorCode.TIMEOUT: | |
exception_class = TimeoutException | |
elif status in ErrorCode.SCRIPT_TIMEOUT: | |
exception_class = TimeoutException | |
elif status in ErrorCode.UNKNOWN_ERROR: | |
exception_class = WebDriverException | |
elif status in ErrorCode.UNEXPECTED_ALERT_OPEN: | |
exception_class = UnexpectedAlertPresentException | |
elif status in ErrorCode.NO_ALERT_OPEN: | |
exception_class = NoAlertPresentException | |
elif status in ErrorCode.IME_NOT_AVAILABLE: | |
exception_class = ImeNotAvailableException | |
elif status in ErrorCode.IME_ENGINE_ACTIVATION_FAILED: | |
exception_class = ImeActivationFailedException | |
elif status in ErrorCode.MOVE_TARGET_OUT_OF_BOUNDS: | |
exception_class = MoveTargetOutOfBoundsException | |
else: | |
exception_class = WebDriverException | |
if value == '' or value is None: | |
value = response['value'] | |
if isinstance(value, basestring): | |
if exception_class == ErrorInResponseException: | |
raise exception_class(response, value) | |
raise exception_class(value) | |
if message == "" and 'message' in value: | |
message = value['message'] | |
screen = None | |
if 'screen' in value: | |
screen = value['screen'] | |
stacktrace = None | |
if 'stackTrace' in value and value['stackTrace']: | |
stacktrace = [] | |
try: | |
for frame in value['stackTrace']: | |
line = self._value_or_default(frame, 'lineNumber', '') | |
file = self._value_or_default(frame, 'fileName', '<anonymous>') | |
if line: | |
file = "%s:%s" % (file, line) | |
meth = self._value_or_default(frame, 'methodName', '<anonymous>') | |
if 'className' in frame: | |
meth = "%s.%s" % (frame['className'], meth) | |
msg = " at %s (%s)" | |
msg = msg % (meth, file) | |
stacktrace.append(msg) | |
except TypeError: | |
pass | |
if exception_class == ErrorInResponseException: | |
raise exception_class(response, message) | |
elif exception_class == UnexpectedAlertPresentException and 'alert' in value: | |
raise exception_class(message, screen, stacktrace, value['alert'].get('text')) | |
> raise exception_class(message, screen, stacktrace) | |
E WebDriverException: Message: connection refused | |
/usr/lib/python2.7/site-packages/selenium/webdriver/remote/errorhandler.py:192: WebDriverException | |
!!!!!!!!!!!!!!!!!!!! Interrupted: stopping after 1 failures !!!!!!!!!!!!!!!!!!!! | |
================ 9 passed, 3 skipped, 1 error in 306.35 seconds ================ | |
[Pipeline] } | |
$ docker stop 68e98879de0fe3b4a9c08813081f4b47d59e04ba634c2b649cc4a8a85c898da4 | |
$ docker rm -f 68e98879de0fe3b4a9c08813081f4b47d59e04ba634c2b649cc4a8a85c898da4 | |
[Pipeline] // withDockerContainer | |
[Pipeline] sh | |
[qcd_7_885_6] Running shell script | |
+ cat geckodriver.log | |
1480331681977 geckodriver INFO Listening on 127.0.0.1:57398 | |
1480331682980 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.DKAtP2XOpnkq | |
1480331682987 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480331683017 geckodriver::marionette INFO Connecting to Marionette on localhost:38524 | |
(firefox:1017): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1017): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1017): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1017): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480331683419 addons.manager DEBUG Application has been upgraded | |
1480331683473 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480331683476 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480331683480 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480331683482 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480331683483 addons.manager DEBUG Starting provider: XPIProvider | |
1480331683484 addons.xpi DEBUG startup | |
1480331683484 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480331683485 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331683486 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331683486 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331683487 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331683487 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480331683488 addons.xpi DEBUG checkForChanges | |
1480331683488 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480331683489 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331683490 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331683491 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331683491 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331683492 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331683492 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331683493 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331683493 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331683493 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480331683494 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480331683494 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480331683503 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.DKAtP2XOpnkq/extensions.json | |
1480331683504 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480331683515 DeferredSave.extensions.json DEBUG Save changes | |
1480331683516 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331683519 DeferredSave.extensions.json DEBUG Starting timer | |
1480331683521 DeferredSave.extensions.json DEBUG Save changes | |
1480331683521 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331683527 DeferredSave.extensions.json DEBUG Save changes | |
1480331683527 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331683534 DeferredSave.extensions.json DEBUG Save changes | |
1480331683535 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480331683539 DeferredSave.extensions.json DEBUG Save changes | |
1480331683539 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331683547 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331683552 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480331683552 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331683552 DeferredSave.extensions.json DEBUG Save changes | |
1480331683554 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331683554 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331683564 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480331683564 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331683564 DeferredSave.extensions.json DEBUG Save changes | |
1480331683564 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331683565 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331683568 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480331683569 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331683570 DeferredSave.extensions.json DEBUG Save changes | |
1480331683570 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331683571 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331683574 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480331683574 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331683575 DeferredSave.extensions.json DEBUG Save changes | |
1480331683575 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480331683575 DeferredSave.extensions.json DEBUG Save changes | |
1480331683576 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{fa2e66c8-b4e5-421a-acb2-a4e1a12324d2}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480331683576 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331683576 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f4b46fe7-6ff6-435b-ae11-a07c999b2b16}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331683576 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331683577 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{27cb2f6d-ade9-42a2-bf63-afc26c7eb388}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331683577 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331683577 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4ad14fe9-4c50-4c5c-9403-461359893fa4}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331683577 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331683577 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{5d7cd947-1c7d-49a1-b4b3-ad486924fb0d}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480331683578 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480331683579 DeferredSave.extensions.json DEBUG Save changes | |
1480331683579 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480331683579 addons.xpi-utils DEBUG Updating add-on states | |
1480331683580 addons.xpi-utils DEBUG Writing add-ons list | |
1480331683580 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331683581 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480331683581 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331683581 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480331683582 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331683582 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480331683582 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331683583 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480331683586 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480331683586 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480331683586 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480331683586 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480331683587 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480331683587 addons.manager DEBUG Starting provider: GMPProvider | |
1480331683597 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480331683597 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480331683598 addons.manager DEBUG Starting provider: PluginProvider | |
1480331683598 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480331683598 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480331683599 addons.manager DEBUG Completed startup sequence | |
1480331683892 Marionette INFO Listening on port 38524 | |
1480331684412 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480331684412 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480331684412 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480331684438 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480331684439 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480331684441 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480331684448 DeferredSave.extensions.json DEBUG Starting write | |
1480331684622 DeferredSave.extensions.json DEBUG Write succeeded | |
1480331684622 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1159): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1159): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1159): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1159): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1017): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1017): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1017): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1017): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1017): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe0d8f87470' of type 'MaiAtkType13b' | |
(firefox:1017): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1017): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe0e72ae6a0' of type 'MaiAtkType13b' | |
(firefox:1017): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe0e1cd9290' of type 'MaiAtkType13b' | |
[Child 1159] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1159] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1159] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480331693351 geckodriver INFO Listening on 127.0.0.1:50514 | |
1480331694352 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.QOcrp1UYser2 | |
1480331694355 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480331694359 geckodriver::marionette INFO Connecting to Marionette on localhost:39344 | |
(firefox:1446): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1446): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1446): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1446): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480331694574 addons.manager DEBUG Application has been upgraded | |
1480331694592 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480331694594 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480331694598 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480331694600 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480331694601 addons.manager DEBUG Starting provider: XPIProvider | |
1480331694602 addons.xpi DEBUG startup | |
1480331694602 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480331694603 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331694603 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331694604 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331694604 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331694605 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480331694605 addons.xpi DEBUG checkForChanges | |
1480331694606 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480331694607 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331694608 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331694608 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331694609 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331694609 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331694610 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331694610 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331694610 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331694611 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480331694611 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480331694612 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480331694620 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.QOcrp1UYser2/extensions.json | |
1480331694621 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480331694630 DeferredSave.extensions.json DEBUG Save changes | |
1480331694630 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331694633 DeferredSave.extensions.json DEBUG Starting timer | |
1480331694634 DeferredSave.extensions.json DEBUG Save changes | |
1480331694634 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331694639 DeferredSave.extensions.json DEBUG Save changes | |
1480331694640 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331694645 DeferredSave.extensions.json DEBUG Save changes | |
1480331694646 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480331694650 DeferredSave.extensions.json DEBUG Save changes | |
1480331694650 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331694657 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331694661 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480331694662 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331694662 DeferredSave.extensions.json DEBUG Save changes | |
1480331694663 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331694663 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331694673 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480331694673 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331694673 DeferredSave.extensions.json DEBUG Save changes | |
1480331694673 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331694674 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331694676 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480331694678 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331694678 DeferredSave.extensions.json DEBUG Save changes | |
1480331694678 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331694679 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331694682 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480331694682 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331694682 DeferredSave.extensions.json DEBUG Save changes | |
1480331694682 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480331694683 DeferredSave.extensions.json DEBUG Save changes | |
1480331694683 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e9cbadd5-95c7-4774-9e1e-ac7ffa9af3da}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480331694683 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331694684 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{da83c1c5-38e7-4fd1-9413-0587ca6dc2cd}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331694684 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331694684 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{733a00f5-1188-4362-a2c2-6f6bae53cd6b}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331694684 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331694685 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c978b623-7678-4f1a-a0e3-885d28802d96}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331694685 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331694685 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{f19bcb95-5fd2-48e5-a3ee-1355fba3852a}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480331694685 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480331694686 DeferredSave.extensions.json DEBUG Save changes | |
1480331694686 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480331694686 addons.xpi-utils DEBUG Updating add-on states | |
1480331694687 addons.xpi-utils DEBUG Writing add-ons list | |
1480331694688 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331694688 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480331694688 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331694689 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480331694689 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331694689 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480331694690 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331694690 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480331694693 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480331694694 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480331694694 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480331694694 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480331694694 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480331694694 addons.manager DEBUG Starting provider: GMPProvider | |
1480331694702 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480331694702 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480331694702 addons.manager DEBUG Starting provider: PluginProvider | |
1480331694702 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480331694702 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480331694703 addons.manager DEBUG Completed startup sequence | |
1480331694958 Marionette INFO Listening on port 39344 | |
1480331695378 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480331695378 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480331695379 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480331695397 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480331695397 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480331695399 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480331695401 DeferredSave.extensions.json DEBUG Starting write | |
1480331695534 DeferredSave.extensions.json DEBUG Write succeeded | |
1480331695535 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1523): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1523): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1523): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1523): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1446): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1446): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1446): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1446): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1446): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f036da5ea60' of type 'MaiAtkType13b' | |
(firefox:1446): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1446): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f036e4baab0' of type 'MaiAtkType13b' | |
(firefox:1446): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f0379a350b0' of type 'MaiAtkType13b' | |
(firefox:1446): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f036c1517e0' of type 'MaiAtkType13b' | |
[Child 1523] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1523] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480331705156 geckodriver INFO Listening on 127.0.0.1:49024 | |
1480331706155 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.GjbJVHdEFUvj | |
1480331706158 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480331706160 geckodriver::marionette INFO Connecting to Marionette on localhost:47154 | |
(firefox:1810): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1810): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1810): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1810): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480331706387 addons.manager DEBUG Application has been upgraded | |
1480331706404 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480331706406 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480331706410 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480331706412 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480331706413 addons.manager DEBUG Starting provider: XPIProvider | |
1480331706414 addons.xpi DEBUG startup | |
1480331706414 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480331706415 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331706415 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331706416 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331706416 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331706417 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480331706417 addons.xpi DEBUG checkForChanges | |
1480331706418 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480331706419 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331706419 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331706420 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331706421 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331706421 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331706421 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331706422 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331706422 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331706422 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480331706423 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480331706423 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480331706431 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.GjbJVHdEFUvj/extensions.json | |
1480331706432 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480331706441 DeferredSave.extensions.json DEBUG Save changes | |
1480331706441 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331706443 DeferredSave.extensions.json DEBUG Starting timer | |
1480331706445 DeferredSave.extensions.json DEBUG Save changes | |
1480331706445 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331706450 DeferredSave.extensions.json DEBUG Save changes | |
1480331706450 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331706456 DeferredSave.extensions.json DEBUG Save changes | |
1480331706457 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480331706460 DeferredSave.extensions.json DEBUG Save changes | |
1480331706461 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331706467 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331706471 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480331706472 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331706472 DeferredSave.extensions.json DEBUG Save changes | |
1480331706473 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331706473 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331706482 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480331706482 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331706483 DeferredSave.extensions.json DEBUG Save changes | |
1480331706483 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331706484 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331706486 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480331706487 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331706488 DeferredSave.extensions.json DEBUG Save changes | |
1480331706488 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331706488 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331706491 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480331706491 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331706492 DeferredSave.extensions.json DEBUG Save changes | |
1480331706492 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480331706492 DeferredSave.extensions.json DEBUG Save changes | |
1480331706493 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1a9a81c7-4add-4eb7-95fa-cad6f50d18ed}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480331706493 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331706493 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0331385d-73ee-4180-aec1-fdd1a414f742}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331706493 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331706494 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b5bd3f14-d3bd-4a62-96e8-494d7ff60643}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331706494 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331706494 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{8bc1812b-4502-4e2d-8e92-1528c4077c4c}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331706494 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331706494 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{c12baf7e-4ca2-4651-aa89-c23ec810cfcf}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480331706495 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480331706496 DeferredSave.extensions.json DEBUG Save changes | |
1480331706496 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480331706496 addons.xpi-utils DEBUG Updating add-on states | |
1480331706496 addons.xpi-utils DEBUG Writing add-ons list | |
1480331706497 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331706498 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480331706498 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331706498 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480331706498 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331706499 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480331706499 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331706499 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480331706503 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480331706503 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480331706503 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480331706503 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480331706503 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480331706504 addons.manager DEBUG Starting provider: GMPProvider | |
1480331706510 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480331706511 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480331706511 addons.manager DEBUG Starting provider: PluginProvider | |
1480331706511 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480331706511 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480331706511 addons.manager DEBUG Completed startup sequence | |
1480331706730 Marionette INFO Listening on port 47154 | |
1480331707133 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480331707133 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480331707133 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480331707149 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480331707149 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480331707151 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480331707153 DeferredSave.extensions.json DEBUG Starting write | |
1480331707284 DeferredSave.extensions.json DEBUG Write succeeded | |
1480331707285 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1884): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1884): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1884): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1884): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1810): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1810): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1810): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1810): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1810): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4d848ea5b0' of type 'MaiAtkType13b' | |
(firefox:1810): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1810): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4d7ff4fce0' of type 'MaiAtkType13b' | |
(firefox:1810): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4d88b8d4c0' of type 'MaiAtkType13b' | |
[Child 1884] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1884] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1884] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480331730019 geckodriver INFO Listening on 127.0.0.1:43064 | |
1480331731020 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.kopManHqSz1l | |
1480331731022 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480331731025 geckodriver::marionette INFO Connecting to Marionette on localhost:46220 | |
(firefox:2203): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2203): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2203): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2203): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480331731236 addons.manager DEBUG Application has been upgraded | |
1480331731254 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480331731256 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480331731261 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480331731263 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480331731264 addons.manager DEBUG Starting provider: XPIProvider | |
1480331731264 addons.xpi DEBUG startup | |
1480331731265 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480331731266 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331731266 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331731266 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331731267 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331731267 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480331731268 addons.xpi DEBUG checkForChanges | |
1480331731268 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480331731270 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331731270 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331731271 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331731271 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331731272 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331731272 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331731273 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331731273 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331731273 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480331731274 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480331731274 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480331731283 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.kopManHqSz1l/extensions.json | |
1480331731284 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480331731293 DeferredSave.extensions.json DEBUG Save changes | |
1480331731293 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331731296 DeferredSave.extensions.json DEBUG Starting timer | |
1480331731297 DeferredSave.extensions.json DEBUG Save changes | |
1480331731297 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331731302 DeferredSave.extensions.json DEBUG Save changes | |
1480331731302 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331731308 DeferredSave.extensions.json DEBUG Save changes | |
1480331731309 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480331731313 DeferredSave.extensions.json DEBUG Save changes | |
1480331731313 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331731320 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331731324 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480331731325 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331731325 DeferredSave.extensions.json DEBUG Save changes | |
1480331731326 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331731326 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331731336 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480331731336 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331731336 DeferredSave.extensions.json DEBUG Save changes | |
1480331731336 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331731337 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331731340 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480331731341 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331731341 DeferredSave.extensions.json DEBUG Save changes | |
1480331731342 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331731342 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331731345 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480331731345 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331731346 DeferredSave.extensions.json DEBUG Save changes | |
1480331731346 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480331731346 DeferredSave.extensions.json DEBUG Save changes | |
1480331731346 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4e2af2ce-cb00-49ee-8c34-7a559214689d}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480331731347 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331731347 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b4938b14-bb07-471e-a8b3-8591e15ec1d9}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331731347 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331731347 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{253a40bd-6fe7-4dba-a970-f5dd58900135}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331731348 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331731348 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ee3ab876-9a6e-471b-89b6-ad6bdc523724}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331731348 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331731348 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{0d0e87fe-f91a-488e-8322-b332af8e8ee8}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480331731348 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480331731350 DeferredSave.extensions.json DEBUG Save changes | |
1480331731350 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480331731350 addons.xpi-utils DEBUG Updating add-on states | |
1480331731350 addons.xpi-utils DEBUG Writing add-ons list | |
1480331731351 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331731352 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480331731352 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331731352 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480331731352 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331731353 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480331731353 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331731353 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480331731357 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480331731357 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480331731357 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480331731357 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480331731357 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480331731358 addons.manager DEBUG Starting provider: GMPProvider | |
1480331731365 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480331731365 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480331731365 addons.manager DEBUG Starting provider: PluginProvider | |
1480331731366 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480331731366 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480331731366 addons.manager DEBUG Completed startup sequence | |
1480331731641 Marionette INFO Listening on port 46220 | |
1480331732044 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480331732044 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480331732045 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480331732060 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480331732060 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480331732062 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480331732064 DeferredSave.extensions.json DEBUG Starting write | |
1480331732216 DeferredSave.extensions.json DEBUG Write succeeded | |
1480331732216 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2287): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2287): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2287): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2287): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2203): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2203): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2203): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2203): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2203): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f38cb784970' of type 'MaiAtkType13b' | |
(firefox:2203): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2203): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f38cc17e560' of type 'MaiAtkType13b' | |
(firefox:2203): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f38ca696970' of type 'MaiAtkType13b' | |
(firefox:2203): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f38ce98cbf0' of type 'MaiAtkType13b' | |
[Child 2287] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 2287] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2287] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480331761589 geckodriver INFO Listening on 127.0.0.1:48582 | |
1480331762589 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.IF3AG02n9zjw | |
1480331762590 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480331762593 geckodriver::marionette INFO Connecting to Marionette on localhost:35020 | |
(firefox:2709): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2709): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2709): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2709): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480331762786 addons.manager DEBUG Application has been upgraded | |
1480331762805 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480331762807 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480331762812 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480331762815 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480331762815 addons.manager DEBUG Starting provider: XPIProvider | |
1480331762816 addons.xpi DEBUG startup | |
1480331762816 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480331762817 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331762818 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331762818 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331762818 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331762819 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480331762819 addons.xpi DEBUG checkForChanges | |
1480331762820 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480331762821 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331762822 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331762823 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331762823 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331762823 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331762824 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331762824 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331762825 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331762825 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480331762826 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480331762827 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480331762836 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.IF3AG02n9zjw/extensions.json | |
1480331762837 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480331762848 DeferredSave.extensions.json DEBUG Save changes | |
1480331762848 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331762851 DeferredSave.extensions.json DEBUG Starting timer | |
1480331762852 DeferredSave.extensions.json DEBUG Save changes | |
1480331762852 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331762857 DeferredSave.extensions.json DEBUG Save changes | |
1480331762857 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331762863 DeferredSave.extensions.json DEBUG Save changes | |
1480331762864 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480331762868 DeferredSave.extensions.json DEBUG Save changes | |
1480331762868 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331762874 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331762879 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480331762879 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331762880 DeferredSave.extensions.json DEBUG Save changes | |
1480331762881 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331762881 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331762890 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480331762890 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331762891 DeferredSave.extensions.json DEBUG Save changes | |
1480331762891 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331762892 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331762894 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480331762896 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331762896 DeferredSave.extensions.json DEBUG Save changes | |
1480331762896 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331762897 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331762900 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480331762900 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331762900 DeferredSave.extensions.json DEBUG Save changes | |
1480331762900 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480331762901 DeferredSave.extensions.json DEBUG Save changes | |
1480331762901 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4f465f21-010c-4e1a-85a0-78abcfc0f2f3}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480331762901 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331762901 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{874cd99d-5310-4a99-ad63-5449aa1bf5d9}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331762902 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331762902 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b6a003c5-2a20-4384-9c6f-65d96d782a4f}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331762902 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331762902 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{152390cc-41e4-40a9-9de1-4fcce4df3951}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331762903 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331762903 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{e97c2187-b04e-4e2c-b381-e9a477292141}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480331762903 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480331762904 DeferredSave.extensions.json DEBUG Save changes | |
1480331762904 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480331762905 addons.xpi-utils DEBUG Updating add-on states | |
1480331762905 addons.xpi-utils DEBUG Writing add-ons list | |
1480331762906 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331762906 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480331762906 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331762907 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480331762907 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331762907 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480331762908 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331762908 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480331762911 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480331762912 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480331762912 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480331762912 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480331762912 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480331762912 addons.manager DEBUG Starting provider: GMPProvider | |
1480331762920 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480331762920 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480331762920 addons.manager DEBUG Starting provider: PluginProvider | |
1480331762920 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480331762920 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480331762921 addons.manager DEBUG Completed startup sequence | |
1480331763094 Marionette INFO Listening on port 35020 | |
1480331763272 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480331763272 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480331763272 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480331763288 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480331763288 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480331763289 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480331763294 DeferredSave.extensions.json DEBUG Starting write | |
1480331763424 DeferredSave.extensions.json DEBUG Write succeeded | |
1480331763425 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2782): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2782): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2782): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2782): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2709): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2709): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2709): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2709): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2709): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7d492748d0' of type 'MaiAtkType13b' | |
(firefox:2709): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2709): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7d492fe330' of type 'MaiAtkType13b' | |
(firefox:2709): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7d49274740' of type 'MaiAtkType13b' | |
(firefox:2709): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f7d4ffbcdd0' of type 'MaiAtkType139' | |
(firefox:2709): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7d48197f10' of type 'MaiAtkType13b' | |
(firefox:2709): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f7d49ce4a10' of type 'MaiAtkType139' | |
[Child 2782] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2782] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480331797335 geckodriver INFO Listening on 127.0.0.1:45723 | |
1480331798335 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.wErTH8rtq3TV | |
1480331798337 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480331798340 geckodriver::marionette INFO Connecting to Marionette on localhost:33603 | |
(firefox:3482): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3482): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3482): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3482): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480331798718 addons.manager DEBUG Application has been upgraded | |
1480331798738 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480331798741 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480331798746 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480331798748 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480331798749 addons.manager DEBUG Starting provider: XPIProvider | |
1480331798749 addons.xpi DEBUG startup | |
1480331798750 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480331798751 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331798751 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331798752 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331798752 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480331798753 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480331798753 addons.xpi DEBUG checkForChanges | |
1480331798754 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480331798756 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331798758 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331798759 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331798759 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331798759 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331798760 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331798761 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480331798761 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331798762 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480331798763 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480331798764 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480331798773 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.wErTH8rtq3TV/extensions.json | |
1480331798774 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480331798786 DeferredSave.extensions.json DEBUG Save changes | |
1480331798787 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331798790 DeferredSave.extensions.json DEBUG Starting timer | |
1480331798791 DeferredSave.extensions.json DEBUG Save changes | |
1480331798791 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331798798 DeferredSave.extensions.json DEBUG Save changes | |
1480331798798 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480331798807 DeferredSave.extensions.json DEBUG Save changes | |
1480331798808 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480331798813 DeferredSave.extensions.json DEBUG Save changes | |
1480331798813 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331798821 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331798826 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480331798826 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331798826 DeferredSave.extensions.json DEBUG Save changes | |
1480331798828 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331798829 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331798839 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480331798840 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331798840 DeferredSave.extensions.json DEBUG Save changes | |
1480331798840 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331798841 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331798844 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480331798846 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331798846 DeferredSave.extensions.json DEBUG Save changes | |
1480331798846 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480331798847 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480331798851 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480331798851 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480331798851 DeferredSave.extensions.json DEBUG Save changes | |
1480331798852 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480331798852 DeferredSave.extensions.json DEBUG Save changes | |
1480331798853 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{5c84d3cc-7778-4570-9ea0-e1e5e78aeb47}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480331798853 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331798853 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{84cfe667-cfb8-49d4-8458-33a9d7b0e22b}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331798854 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331798854 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{db267b84-9746-4902-98f0-420495f78a6e}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331798854 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331798854 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{01b8eabc-3952-41f0-8447-27d4e40257f0}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480331798855 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480331798855 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{8260c8ed-17cd-44de-ab93-cd6c0e788849}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480331798855 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480331798857 DeferredSave.extensions.json DEBUG Save changes | |
1480331798857 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480331798857 addons.xpi-utils DEBUG Updating add-on states | |
1480331798857 addons.xpi-utils DEBUG Writing add-ons list | |
1480331798859 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331798859 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480331798859 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331798859 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480331798860 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331798860 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480331798861 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480331798861 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480331798865 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480331798865 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480331798865 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480331798866 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480331798866 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480331798866 addons.manager DEBUG Starting provider: GMPProvider | |
1480331798875 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480331798876 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480331798876 addons.manager DEBUG Starting provider: PluginProvider | |
1480331798876 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480331798876 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480331798877 addons.manager DEBUG Completed startup sequence | |
1480331799084 Marionette INFO Listening on port 33603 | |
1480331799300 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480331799300 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480331799301 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480331799319 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480331799320 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480331799321 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480331799327 DeferredSave.extensions.json DEBUG Starting write | |
1480331799500 DeferredSave.extensions.json DEBUG Write succeeded | |
1480331799501 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:3559): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3559): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3559): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3559): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3482): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3482): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3482): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3482): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 3559] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 3559] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381302570 geckodriver INFO Listening on 127.0.0.1:41444 | |
1480381303567 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.7qdchCG1HYvV | |
1480381303586 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381303614 geckodriver::marionette INFO Connecting to Marionette on localhost:51375 | |
(firefox:964): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:964): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:964): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:964): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381303883 addons.manager DEBUG Application has been upgraded | |
1480381303902 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381303905 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381303909 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381303911 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381303912 addons.manager DEBUG Starting provider: XPIProvider | |
1480381303913 addons.xpi DEBUG startup | |
1480381303913 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381303914 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381303915 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381303915 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381303916 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381303916 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381303917 addons.xpi DEBUG checkForChanges | |
1480381303917 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381303918 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381303919 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381303920 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381303920 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381303921 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381303921 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381303922 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381303922 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381303922 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381303923 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381303923 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381303932 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.7qdchCG1HYvV/extensions.json | |
1480381303933 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381303943 DeferredSave.extensions.json DEBUG Save changes | |
1480381303944 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381303946 DeferredSave.extensions.json DEBUG Starting timer | |
1480381303948 DeferredSave.extensions.json DEBUG Save changes | |
1480381303948 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381303953 DeferredSave.extensions.json DEBUG Save changes | |
1480381303953 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381303960 DeferredSave.extensions.json DEBUG Save changes | |
1480381303961 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381303965 DeferredSave.extensions.json DEBUG Save changes | |
1480381303965 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381303972 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381303976 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381303976 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381303977 DeferredSave.extensions.json DEBUG Save changes | |
1480381303978 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381303978 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381303988 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381303988 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381303988 DeferredSave.extensions.json DEBUG Save changes | |
1480381303988 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381303989 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381303992 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381303993 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381303993 DeferredSave.extensions.json DEBUG Save changes | |
1480381303993 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381303994 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381303997 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381303997 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381303998 DeferredSave.extensions.json DEBUG Save changes | |
1480381303998 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381303998 DeferredSave.extensions.json DEBUG Save changes | |
1480381303998 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a5883611-faad-4670-a209-3cfc8bf83136}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381303998 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381303999 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{8ee7f523-4043-4857-88d2-0630ec5057e6}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381303999 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381303999 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{eb246cfb-879c-4649-9690-04e47f303f2a}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381303999 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381304000 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{9aa0872d-c029-46c7-9ba5-ad855be0b4e4}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381304000 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381304000 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{41b781f3-4642-46f8-9f30-1784338f7345}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381304000 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381304002 DeferredSave.extensions.json DEBUG Save changes | |
1480381304002 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381304002 addons.xpi-utils DEBUG Updating add-on states | |
1480381304002 addons.xpi-utils DEBUG Writing add-ons list | |
1480381304003 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381304003 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381304004 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381304004 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381304004 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381304005 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381304005 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381304005 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381304009 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381304009 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381304009 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381304009 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381304009 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381304010 addons.manager DEBUG Starting provider: GMPProvider | |
1480381304017 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381304018 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381304018 addons.manager DEBUG Starting provider: PluginProvider | |
1480381304018 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381304018 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381304019 addons.manager DEBUG Completed startup sequence | |
1480381304207 Marionette INFO Listening on port 51375 | |
1480381304428 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381304428 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381304428 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381304444 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381304444 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381304446 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381304448 DeferredSave.extensions.json DEBUG Starting write | |
1480381304614 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381304615 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1080): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1080): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1080): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1080): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:964): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:964): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:964): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:964): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:964): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4985acdba0' of type 'MaiAtkType13b' | |
(firefox:964): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:964): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4986636650' of type 'MaiAtkType13b' | |
(firefox:964): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f498396d560' of type 'MaiAtkType13b' | |
[Child 1080] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1080] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1080] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381313023 geckodriver INFO Listening on 127.0.0.1:58011 | |
1480381314016 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.vyRSuP0Fw5nX | |
1480381314017 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381314020 geckodriver::marionette INFO Connecting to Marionette on localhost:33993 | |
(firefox:1371): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1371): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1371): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1371): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381314229 addons.manager DEBUG Application has been upgraded | |
1480381314247 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381314249 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381314253 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381314255 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381314256 addons.manager DEBUG Starting provider: XPIProvider | |
1480381314257 addons.xpi DEBUG startup | |
1480381314257 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381314258 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381314259 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381314259 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381314259 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381314260 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381314260 addons.xpi DEBUG checkForChanges | |
1480381314261 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381314262 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381314263 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381314264 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381314264 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381314264 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381314265 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381314265 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381314266 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381314266 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381314267 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381314267 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381314275 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.vyRSuP0Fw5nX/extensions.json | |
1480381314277 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381314286 DeferredSave.extensions.json DEBUG Save changes | |
1480381314286 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381314289 DeferredSave.extensions.json DEBUG Starting timer | |
1480381314290 DeferredSave.extensions.json DEBUG Save changes | |
1480381314290 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381314295 DeferredSave.extensions.json DEBUG Save changes | |
1480381314296 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381314301 DeferredSave.extensions.json DEBUG Save changes | |
1480381314302 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381314306 DeferredSave.extensions.json DEBUG Save changes | |
1480381314307 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381314313 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381314318 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381314318 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381314318 DeferredSave.extensions.json DEBUG Save changes | |
1480381314319 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381314319 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381314329 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381314329 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381314329 DeferredSave.extensions.json DEBUG Save changes | |
1480381314329 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381314330 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381314333 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381314334 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381314335 DeferredSave.extensions.json DEBUG Save changes | |
1480381314335 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381314335 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381314338 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381314339 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381314339 DeferredSave.extensions.json DEBUG Save changes | |
1480381314339 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381314339 DeferredSave.extensions.json DEBUG Save changes | |
1480381314340 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{6afa3b2d-ea49-4e9f-9aa7-16b34e77f7a6}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381314340 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381314340 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{86588822-4fbc-4e4b-90a9-80b6d62ddb88}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381314340 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381314341 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{164640f3-dfd0-4ae8-a164-c57f2884c538}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381314341 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381314341 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{79726e9a-84fd-457a-a104-610401723932}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381314341 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381314342 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{08894328-1546-4f9f-ad8f-3e98d841d5ea}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381314342 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381314343 DeferredSave.extensions.json DEBUG Save changes | |
1480381314343 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381314343 addons.xpi-utils DEBUG Updating add-on states | |
1480381314344 addons.xpi-utils DEBUG Writing add-ons list | |
1480381314344 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381314345 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381314345 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381314345 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381314346 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381314346 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381314346 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381314347 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381314350 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381314350 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381314350 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381314350 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381314350 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381314351 addons.manager DEBUG Starting provider: GMPProvider | |
1480381314359 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381314359 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381314359 addons.manager DEBUG Starting provider: PluginProvider | |
1480381314359 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381314360 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381314360 addons.manager DEBUG Completed startup sequence | |
1480381314527 Marionette INFO Listening on port 33993 | |
1480381314702 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381314702 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381314702 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381314721 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381314722 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381314724 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381314729 DeferredSave.extensions.json DEBUG Starting write | |
1480381314895 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381314896 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1443): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1443): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1443): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1443): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1371): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1371): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1371): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1371): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1371): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f9816e6f470' of type 'MaiAtkType13b' | |
(firefox:1371): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1371): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f98213a2790' of type 'MaiAtkType13b' | |
(firefox:1371): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f98213a2830' of type 'MaiAtkType13b' | |
(firefox:1371): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f9817152420' of type 'MaiAtkType13b' | |
[Child 1443] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1443] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381323971 geckodriver INFO Listening on 127.0.0.1:58352 | |
1480381324972 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.J6HH3ZlwB668 | |
1480381324974 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381324977 geckodriver::marionette INFO Connecting to Marionette on localhost:60733 | |
(firefox:1737): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1737): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1737): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1737): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381325199 addons.manager DEBUG Application has been upgraded | |
1480381325218 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381325220 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381325225 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381325227 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381325228 addons.manager DEBUG Starting provider: XPIProvider | |
1480381325229 addons.xpi DEBUG startup | |
1480381325230 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381325231 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381325232 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381325232 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381325233 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381325234 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381325234 addons.xpi DEBUG checkForChanges | |
1480381325235 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381325236 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381325237 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381325238 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381325238 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381325239 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381325239 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381325240 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381325240 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381325241 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381325241 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381325242 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381325250 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.J6HH3ZlwB668/extensions.json | |
1480381325251 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381325261 DeferredSave.extensions.json DEBUG Save changes | |
1480381325262 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381325264 DeferredSave.extensions.json DEBUG Starting timer | |
1480381325265 DeferredSave.extensions.json DEBUG Save changes | |
1480381325266 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381325271 DeferredSave.extensions.json DEBUG Save changes | |
1480381325271 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381325277 DeferredSave.extensions.json DEBUG Save changes | |
1480381325278 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381325282 DeferredSave.extensions.json DEBUG Save changes | |
1480381325282 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381325289 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381325294 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381325295 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381325295 DeferredSave.extensions.json DEBUG Save changes | |
1480381325296 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381325297 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381325306 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381325306 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381325307 DeferredSave.extensions.json DEBUG Save changes | |
1480381325307 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381325308 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381325311 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381325312 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381325312 DeferredSave.extensions.json DEBUG Save changes | |
1480381325313 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381325313 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381325316 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381325317 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381325317 DeferredSave.extensions.json DEBUG Save changes | |
1480381325317 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381325317 DeferredSave.extensions.json DEBUG Save changes | |
1480381325318 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{6e5b3c26-c658-4d91-8717-9db45bb636eb}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381325318 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381325318 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c7b287b4-054c-4ded-9f17-cd7d8688d4c8}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381325318 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381325319 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{8ac2fa53-404f-4e2b-b48f-a433c67dcaa0}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381325319 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381325319 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c8e65d80-028a-4d0e-9bb5-99527b479230}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381325319 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381325320 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{79e36cfb-09c3-4230-b3e5-bfc80ded5c48}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381325320 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381325321 DeferredSave.extensions.json DEBUG Save changes | |
1480381325321 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381325321 addons.xpi-utils DEBUG Updating add-on states | |
1480381325322 addons.xpi-utils DEBUG Writing add-ons list | |
1480381325323 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381325323 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381325323 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381325324 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381325324 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381325324 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381325325 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381325325 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381325329 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381325329 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381325329 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381325329 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381325329 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381325330 addons.manager DEBUG Starting provider: GMPProvider | |
1480381325337 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381325337 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381325337 addons.manager DEBUG Starting provider: PluginProvider | |
1480381325338 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381325338 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381325338 addons.manager DEBUG Completed startup sequence | |
1480381325552 Marionette INFO Listening on port 60733 | |
1480381325765 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381325765 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381325765 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381325784 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381325784 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381325786 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381325790 DeferredSave.extensions.json DEBUG Starting write | |
1480381325926 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381325927 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1817): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1817): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1817): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1817): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1737): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1737): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1737): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1737): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1737): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f31a796e6f0' of type 'MaiAtkType13b' | |
(firefox:1737): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1737): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f31a79e9970' of type 'MaiAtkType13b' | |
(firefox:1737): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f31b2aef4c0' of type 'MaiAtkType13b' | |
[Child 1817] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1817] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1817] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381348882 geckodriver INFO Listening on 127.0.0.1:51721 | |
1480381349880 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.5PqFQytspx1V | |
1480381349882 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381349884 geckodriver::marionette INFO Connecting to Marionette on localhost:42968 | |
(firefox:2132): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2132): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2132): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2132): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381350117 addons.manager DEBUG Application has been upgraded | |
1480381350135 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381350137 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381350141 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381350143 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381350144 addons.manager DEBUG Starting provider: XPIProvider | |
1480381350145 addons.xpi DEBUG startup | |
1480381350145 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381350146 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381350146 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381350147 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381350147 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381350148 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381350148 addons.xpi DEBUG checkForChanges | |
1480381350149 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381350150 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381350151 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381350152 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381350152 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381350152 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381350153 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381350153 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381350154 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381350154 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381350155 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381350155 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381350163 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.5PqFQytspx1V/extensions.json | |
1480381350164 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381350173 DeferredSave.extensions.json DEBUG Save changes | |
1480381350173 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381350176 DeferredSave.extensions.json DEBUG Starting timer | |
1480381350177 DeferredSave.extensions.json DEBUG Save changes | |
1480381350177 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381350182 DeferredSave.extensions.json DEBUG Save changes | |
1480381350182 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381350188 DeferredSave.extensions.json DEBUG Save changes | |
1480381350189 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381350193 DeferredSave.extensions.json DEBUG Save changes | |
1480381350193 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381350201 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381350208 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381350209 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381350209 DeferredSave.extensions.json DEBUG Save changes | |
1480381350211 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381350211 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381350222 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381350222 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381350222 DeferredSave.extensions.json DEBUG Save changes | |
1480381350222 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381350223 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381350226 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381350227 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381350227 DeferredSave.extensions.json DEBUG Save changes | |
1480381350227 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381350228 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381350231 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381350231 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381350232 DeferredSave.extensions.json DEBUG Save changes | |
1480381350232 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381350232 DeferredSave.extensions.json DEBUG Save changes | |
1480381350232 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{896ad9a6-4cd3-4618-822f-4935b9002dd1}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381350232 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381350233 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{585342a3-74b6-4300-9b6a-a9555138ae3f}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381350233 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381350233 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{bd5adabe-d669-4136-8a3b-94ca4458de9b}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381350233 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381350234 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{24fe0dc9-ad6a-4219-a00d-d245ffc7d549}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381350234 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381350234 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{e0dca65e-c5a2-4a5c-838e-293f48ca6d1d}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381350234 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381350236 DeferredSave.extensions.json DEBUG Save changes | |
1480381350236 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381350236 addons.xpi-utils DEBUG Updating add-on states | |
1480381350236 addons.xpi-utils DEBUG Writing add-ons list | |
1480381350237 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381350237 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381350238 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381350238 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381350238 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381350239 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381350239 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381350239 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381350242 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381350243 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381350243 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381350243 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381350243 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381350244 addons.manager DEBUG Starting provider: GMPProvider | |
1480381350251 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381350251 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381350251 addons.manager DEBUG Starting provider: PluginProvider | |
1480381350251 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381350252 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381350252 addons.manager DEBUG Completed startup sequence | |
1480381350424 Marionette INFO Listening on port 42968 | |
1480381350608 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381350608 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381350608 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381350624 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381350624 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381350625 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381350629 DeferredSave.extensions.json DEBUG Starting write | |
1480381350764 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381350765 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2209): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2209): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2209): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2209): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2132): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2132): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2132): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2132): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2132): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f435a1996f0' of type 'MaiAtkType13b' | |
(firefox:2132): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2132): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f435a199ce0' of type 'MaiAtkType13b' | |
(firefox:2132): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4351765f60' of type 'MaiAtkType13b' | |
(firefox:2132): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f43534fadd0' of type 'MaiAtkType13b' | |
[Child 2209] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 2209] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2209] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381380319 geckodriver INFO Listening on 127.0.0.1:33996 | |
1480381381319 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.qNWJCFF05kbg | |
1480381381321 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381381324 geckodriver::marionette INFO Connecting to Marionette on localhost:46793 | |
(firefox:2629): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2629): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2629): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2629): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381381535 addons.manager DEBUG Application has been upgraded | |
1480381381553 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381381555 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381381559 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381381562 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381381562 addons.manager DEBUG Starting provider: XPIProvider | |
1480381381563 addons.xpi DEBUG startup | |
1480381381563 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381381564 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381381565 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381381565 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381381565 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381381566 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381381566 addons.xpi DEBUG checkForChanges | |
1480381381567 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381381568 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381381569 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381381570 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381381570 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381381570 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381381571 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381381571 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381381572 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381381572 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381381573 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381381573 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381381581 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.qNWJCFF05kbg/extensions.json | |
1480381381582 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381381595 DeferredSave.extensions.json DEBUG Save changes | |
1480381381596 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381381600 DeferredSave.extensions.json DEBUG Starting timer | |
1480381381602 DeferredSave.extensions.json DEBUG Save changes | |
1480381381602 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381381610 DeferredSave.extensions.json DEBUG Save changes | |
1480381381610 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381381620 DeferredSave.extensions.json DEBUG Save changes | |
1480381381621 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381381626 DeferredSave.extensions.json DEBUG Save changes | |
1480381381627 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381381636 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381381642 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381381642 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381381642 DeferredSave.extensions.json DEBUG Save changes | |
1480381381644 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381381644 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381381658 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381381658 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381381659 DeferredSave.extensions.json DEBUG Save changes | |
1480381381659 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381381660 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381381664 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381381665 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381381666 DeferredSave.extensions.json DEBUG Save changes | |
1480381381666 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381381667 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381381672 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381381672 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381381672 DeferredSave.extensions.json DEBUG Save changes | |
1480381381673 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381381673 DeferredSave.extensions.json DEBUG Save changes | |
1480381381674 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{23169b8e-535c-4e8d-b286-a79d1562a3f4}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381381674 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381381674 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{fc9e1baf-2de1-4707-a4ce-a1ed7e8a8538}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381381674 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381381675 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c2e8cd1c-558f-4faa-a0ac-ccb9043f0977}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381381676 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381381676 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{033a4cf9-386b-49cb-a83f-d6e5dace0881}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381381676 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381381677 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{88ed9785-9fbf-4e9d-af7c-3e31ee37f228}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381381677 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381381678 DeferredSave.extensions.json DEBUG Save changes | |
1480381381679 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381381679 addons.xpi-utils DEBUG Updating add-on states | |
1480381381679 addons.xpi-utils DEBUG Writing add-ons list | |
1480381381680 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381381681 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381381681 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381381682 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381381682 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381381683 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381381683 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381381684 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381381688 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381381688 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381381689 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381381689 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381381689 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381381689 addons.manager DEBUG Starting provider: GMPProvider | |
1480381381699 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381381699 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381381699 addons.manager DEBUG Starting provider: PluginProvider | |
1480381381699 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381381700 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381381700 addons.manager DEBUG Completed startup sequence | |
1480381381883 Marionette INFO Listening on port 46793 | |
1480381382071 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381382071 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381382071 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381382087 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381382088 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381382089 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381382093 DeferredSave.extensions.json DEBUG Starting write | |
1480381382242 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381382243 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2710): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2710): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2710): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2710): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2629): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2629): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2629): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2629): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2629): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe06fc3a6f0' of type 'MaiAtkType13b' | |
(firefox:2629): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2629): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe059c92740' of type 'MaiAtkType13b' | |
(firefox:2629): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe0601fa6a0' of type 'MaiAtkType13b' | |
(firefox:2629): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fe0601fac40' of type 'MaiAtkType139' | |
(firefox:2629): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe059c675b0' of type 'MaiAtkType13b' | |
(firefox:2629): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fe05b657330' of type 'MaiAtkType139' | |
[Child 2710] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2710] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381416125 geckodriver INFO Listening on 127.0.0.1:44468 | |
1480381417125 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.qTGSWvUHibzn | |
1480381417127 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381417130 geckodriver::marionette INFO Connecting to Marionette on localhost:43032 | |
(firefox:3425): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3425): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3425): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3425): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381417654 addons.manager DEBUG Application has been upgraded | |
1480381417672 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381417674 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381417679 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381417681 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381417682 addons.manager DEBUG Starting provider: XPIProvider | |
1480381417682 addons.xpi DEBUG startup | |
1480381417683 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381417683 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381417684 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381417684 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381417684 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381417685 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381417686 addons.xpi DEBUG checkForChanges | |
1480381417686 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381417687 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381417688 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381417689 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381417689 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381417689 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381417690 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381417690 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381417691 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381417691 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381417692 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381417692 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381417700 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.qTGSWvUHibzn/extensions.json | |
1480381417701 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381417710 DeferredSave.extensions.json DEBUG Save changes | |
1480381417710 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381417712 DeferredSave.extensions.json DEBUG Starting timer | |
1480381417714 DeferredSave.extensions.json DEBUG Save changes | |
1480381417714 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381417719 DeferredSave.extensions.json DEBUG Save changes | |
1480381417719 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381417725 DeferredSave.extensions.json DEBUG Save changes | |
1480381417726 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381417729 DeferredSave.extensions.json DEBUG Save changes | |
1480381417730 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381417737 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381417742 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381417742 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381417742 DeferredSave.extensions.json DEBUG Save changes | |
1480381417743 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381417743 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381417753 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381417753 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381417753 DeferredSave.extensions.json DEBUG Save changes | |
1480381417753 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381417754 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381417757 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381417759 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381417759 DeferredSave.extensions.json DEBUG Save changes | |
1480381417759 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381417760 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381417763 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381417763 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381417763 DeferredSave.extensions.json DEBUG Save changes | |
1480381417764 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381417764 DeferredSave.extensions.json DEBUG Save changes | |
1480381417764 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{85705ea7-3c19-4ea9-8564-b3622fa796bb}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381417764 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381417765 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{555873f7-259f-4216-a61d-0cf8b3b88c11}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381417765 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381417765 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{5df40c79-d284-445c-bfb0-7c55bb334962}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381417765 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381417766 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{950ae698-c6ff-4507-90f0-a70fc92d69da}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381417766 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381417766 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{be873548-82d8-4f5b-a145-39023c9e0aaa}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381417766 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381417767 DeferredSave.extensions.json DEBUG Save changes | |
1480381417768 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381417768 addons.xpi-utils DEBUG Updating add-on states | |
1480381417768 addons.xpi-utils DEBUG Writing add-ons list | |
1480381417769 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381417769 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381417769 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381417770 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381417770 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381417771 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381417771 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381417771 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381417774 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381417775 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381417775 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381417775 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381417775 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381417775 addons.manager DEBUG Starting provider: GMPProvider | |
1480381417783 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381417783 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381417783 addons.manager DEBUG Starting provider: PluginProvider | |
1480381417783 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381417783 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381417784 addons.manager DEBUG Completed startup sequence | |
1480381417983 Marionette INFO Listening on port 43032 | |
1480381418173 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381418173 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381418174 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381418192 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381418192 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381418194 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381418198 DeferredSave.extensions.json DEBUG Starting write | |
1480381418331 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381418332 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:3508): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3508): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3508): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3508): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3425): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3425): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3425): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3425): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3425): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7efde3244830' of type 'MaiAtkType13b' | |
(firefox:3425): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3425): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7efdefef50b0' of type 'MaiAtkType13b' | |
(firefox:3425): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7efdea698330' of type 'MaiAtkType13b' | |
[Child 3508] WARNING: pipe error (26): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 3508] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 3508] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 3508] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381452083 geckodriver INFO Listening on 127.0.0.1:60892 | |
1480381453082 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.KOdzK2HvfG9L | |
1480381453083 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381453085 geckodriver::marionette INFO Connecting to Marionette on localhost:49402 | |
(firefox:4145): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4145): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4145): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4145): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381453282 addons.manager DEBUG Application has been upgraded | |
1480381453301 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381453304 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381453308 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381453311 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381453312 addons.manager DEBUG Starting provider: XPIProvider | |
1480381453313 addons.xpi DEBUG startup | |
1480381453313 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381453314 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381453315 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381453315 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381453316 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381453316 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381453317 addons.xpi DEBUG checkForChanges | |
1480381453317 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381453319 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381453320 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381453320 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381453321 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381453321 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381453322 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381453322 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381453322 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381453323 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381453324 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381453324 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381453333 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.KOdzK2HvfG9L/extensions.json | |
1480381453334 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381453344 DeferredSave.extensions.json DEBUG Save changes | |
1480381453344 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381453347 DeferredSave.extensions.json DEBUG Starting timer | |
1480381453348 DeferredSave.extensions.json DEBUG Save changes | |
1480381453349 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381453354 DeferredSave.extensions.json DEBUG Save changes | |
1480381453354 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381453362 DeferredSave.extensions.json DEBUG Save changes | |
1480381453363 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381453367 DeferredSave.extensions.json DEBUG Save changes | |
1480381453367 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381453375 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381453380 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381453380 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381453380 DeferredSave.extensions.json DEBUG Save changes | |
1480381453381 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381453382 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381453393 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381453393 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381453394 DeferredSave.extensions.json DEBUG Save changes | |
1480381453394 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381453395 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381453397 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381453398 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381453399 DeferredSave.extensions.json DEBUG Save changes | |
1480381453399 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381453400 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381453403 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381453403 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381453403 DeferredSave.extensions.json DEBUG Save changes | |
1480381453403 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381453404 DeferredSave.extensions.json DEBUG Save changes | |
1480381453404 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{58a432c5-366b-4618-9bf6-379d9a80986c}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381453404 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381453404 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d304c154-832f-4224-b96a-4e8bc26f3e22}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381453405 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381453405 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0166e69d-3388-4f9a-80a9-dd40aa4b3b68}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381453405 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381453405 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{910cc7e7-ea93-4186-850b-70d747e85ef3}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381453405 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381453406 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{65460e70-67f5-4a17-80ff-f42a35abd710}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381453406 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381453407 DeferredSave.extensions.json DEBUG Save changes | |
1480381453407 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381453407 addons.xpi-utils DEBUG Updating add-on states | |
1480381453408 addons.xpi-utils DEBUG Writing add-ons list | |
1480381453409 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381453409 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381453409 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381453409 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381453410 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381453410 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381453411 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381453411 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381453414 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381453414 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381453415 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381453415 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381453415 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381453415 addons.manager DEBUG Starting provider: GMPProvider | |
1480381453422 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381453423 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381453423 addons.manager DEBUG Starting provider: PluginProvider | |
1480381453423 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381453423 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381453423 addons.manager DEBUG Completed startup sequence | |
1480381453596 Marionette INFO Listening on port 49402 | |
1480381453790 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381453790 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381453790 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381453807 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381453808 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381453809 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381453814 DeferredSave.extensions.json DEBUG Starting write | |
1480381453947 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381453947 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4222): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4222): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4222): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4222): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4145): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4145): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4145): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4145): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4145): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fc638b892e0' of type 'MaiAtkType13b' | |
(firefox:4145): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fc641563ba0' of type 'MaiAtkType13b' | |
[Child 4222] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4222] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381459263 geckodriver INFO Listening on 127.0.0.1:55362 | |
1480381460263 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.6nn202U0gHvj | |
1480381460265 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381460267 geckodriver::marionette INFO Connecting to Marionette on localhost:45192 | |
(firefox:4594): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4594): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4594): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4594): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381460502 addons.manager DEBUG Application has been upgraded | |
1480381460521 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381460523 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381460528 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381460530 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381460531 addons.manager DEBUG Starting provider: XPIProvider | |
1480381460532 addons.xpi DEBUG startup | |
1480381460532 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381460533 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381460534 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381460534 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381460534 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381460535 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381460536 addons.xpi DEBUG checkForChanges | |
1480381460536 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381460537 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381460538 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381460539 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381460539 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381460540 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381460540 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381460541 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381460541 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381460542 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381460542 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381460543 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381460551 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.6nn202U0gHvj/extensions.json | |
1480381460552 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381460562 DeferredSave.extensions.json DEBUG Save changes | |
1480381460563 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381460565 DeferredSave.extensions.json DEBUG Starting timer | |
1480381460567 DeferredSave.extensions.json DEBUG Save changes | |
1480381460567 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381460573 DeferredSave.extensions.json DEBUG Save changes | |
1480381460573 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381460579 DeferredSave.extensions.json DEBUG Save changes | |
1480381460580 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381460584 DeferredSave.extensions.json DEBUG Save changes | |
1480381460585 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381460592 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381460597 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381460597 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381460597 DeferredSave.extensions.json DEBUG Save changes | |
1480381460598 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381460599 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381460609 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381460609 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381460609 DeferredSave.extensions.json DEBUG Save changes | |
1480381460609 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381460610 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381460613 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381460615 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381460615 DeferredSave.extensions.json DEBUG Save changes | |
1480381460615 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381460616 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381460619 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381460619 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381460620 DeferredSave.extensions.json DEBUG Save changes | |
1480381460620 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381460620 DeferredSave.extensions.json DEBUG Save changes | |
1480381460620 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{5c587794-f5f4-4b79-ad6e-e852a493412d}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381460621 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381460621 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{9c693921-bc07-4aa8-8b14-bade7d2e4a01}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381460621 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381460622 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{89c00b17-d9ad-4ed9-a7fe-f07ee4410387}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381460622 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381460622 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4fc1f36d-f96e-4062-bbaa-52d5f2d55bb5}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381460622 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381460622 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{edc26ffd-b991-40b6-8de1-9ed147ac0aa6}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381460623 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381460624 DeferredSave.extensions.json DEBUG Save changes | |
1480381460624 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381460624 addons.xpi-utils DEBUG Updating add-on states | |
1480381460625 addons.xpi-utils DEBUG Writing add-ons list | |
1480381460626 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381460626 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381460626 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381460627 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381460627 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381460627 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381460628 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381460628 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381460632 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381460632 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381460632 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381460632 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381460632 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381460633 addons.manager DEBUG Starting provider: GMPProvider | |
1480381460641 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381460641 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381460641 addons.manager DEBUG Starting provider: PluginProvider | |
1480381460641 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381460642 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381460642 addons.manager DEBUG Completed startup sequence | |
1480381460822 Marionette INFO Listening on port 45192 | |
1480381461006 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381461006 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381461007 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381461029 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381461029 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381461030 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381461035 DeferredSave.extensions.json DEBUG Starting write | |
1480381461185 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381461187 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4665): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4665): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4665): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4665): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4594): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4594): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4594): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4594): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 4665] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 4665] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4665] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381463490 geckodriver INFO Listening on 127.0.0.1:55795 | |
1480381464492 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.olO2vtHspmue | |
1480381464493 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381464496 geckodriver::marionette INFO Connecting to Marionette on localhost:49064 | |
(firefox:4836): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4836): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4836): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4836): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381464729 addons.manager DEBUG Application has been upgraded | |
1480381464756 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381464759 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381464764 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381464766 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381464767 addons.manager DEBUG Starting provider: XPIProvider | |
1480381464767 addons.xpi DEBUG startup | |
1480381464768 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381464769 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381464769 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381464770 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381464770 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381464771 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381464771 addons.xpi DEBUG checkForChanges | |
1480381464772 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381464773 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381464774 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381464775 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381464775 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381464775 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381464776 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381464776 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381464777 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381464777 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381464778 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381464778 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381464786 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.olO2vtHspmue/extensions.json | |
1480381464787 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381464796 DeferredSave.extensions.json DEBUG Save changes | |
1480381464797 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381464799 DeferredSave.extensions.json DEBUG Starting timer | |
1480381464800 DeferredSave.extensions.json DEBUG Save changes | |
1480381464801 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381464806 DeferredSave.extensions.json DEBUG Save changes | |
1480381464806 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381464812 DeferredSave.extensions.json DEBUG Save changes | |
1480381464813 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381464816 DeferredSave.extensions.json DEBUG Save changes | |
1480381464817 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381464823 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381464828 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381464828 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381464828 DeferredSave.extensions.json DEBUG Save changes | |
1480381464829 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381464830 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381464839 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381464839 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381464840 DeferredSave.extensions.json DEBUG Save changes | |
1480381464840 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381464841 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381464844 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381464845 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381464845 DeferredSave.extensions.json DEBUG Save changes | |
1480381464846 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381464846 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381464850 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381464850 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381464850 DeferredSave.extensions.json DEBUG Save changes | |
1480381464850 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381464851 DeferredSave.extensions.json DEBUG Save changes | |
1480381464851 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1cf0e139-3c65-4320-a8ae-475b37491bd9}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381464851 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381464852 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1ce27acc-c0fa-4f68-988a-fbbbaaa698b6}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381464852 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381464852 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{64f69316-45cc-495c-b222-88bcbf71b1c1}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381464852 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381464853 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{8d3b918e-38f1-47f3-9f46-a2a1cd345f02}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381464853 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381464853 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{f32636dc-d9c7-436f-95e7-fb0ee97cfbca}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381464853 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381464855 DeferredSave.extensions.json DEBUG Save changes | |
1480381464855 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381464855 addons.xpi-utils DEBUG Updating add-on states | |
1480381464856 addons.xpi-utils DEBUG Writing add-ons list | |
1480381464857 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381464857 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381464857 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381464858 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381464858 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381464858 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381464859 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381464859 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381464863 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381464863 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381464863 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381464864 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381464864 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381464864 addons.manager DEBUG Starting provider: GMPProvider | |
1480381464873 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381464873 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381464873 addons.manager DEBUG Starting provider: PluginProvider | |
1480381464873 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381464874 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381464874 addons.manager DEBUG Completed startup sequence | |
1480381465066 Marionette INFO Listening on port 49064 | |
1480381465260 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381465260 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381465260 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381465276 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381465276 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381465278 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381465282 DeferredSave.extensions.json DEBUG Starting write | |
1480381465423 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381465424 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4908): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4908): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4908): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4908): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4836): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4836): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4836): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4836): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 4908] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 4908] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4908] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381467751 geckodriver INFO Listening on 127.0.0.1:55694 | |
1480381468751 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.eemjDV2YljSe | |
1480381468753 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381468755 geckodriver::marionette INFO Connecting to Marionette on localhost:50900 | |
(firefox:5090): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5090): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5090): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5090): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381468981 addons.manager DEBUG Application has been upgraded | |
1480381468999 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381469001 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381469005 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381469007 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381469008 addons.manager DEBUG Starting provider: XPIProvider | |
1480381469009 addons.xpi DEBUG startup | |
1480381469009 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381469010 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381469011 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381469011 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381469011 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381469012 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381469012 addons.xpi DEBUG checkForChanges | |
1480381469013 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381469014 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381469015 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381469016 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381469016 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381469017 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381469017 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381469018 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381469018 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381469018 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381469019 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381469019 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381469027 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.eemjDV2YljSe/extensions.json | |
1480381469028 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381469037 DeferredSave.extensions.json DEBUG Save changes | |
1480381469038 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381469040 DeferredSave.extensions.json DEBUG Starting timer | |
1480381469042 DeferredSave.extensions.json DEBUG Save changes | |
1480381469042 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381469047 DeferredSave.extensions.json DEBUG Save changes | |
1480381469047 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381469053 DeferredSave.extensions.json DEBUG Save changes | |
1480381469054 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381469058 DeferredSave.extensions.json DEBUG Save changes | |
1480381469059 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381469066 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381469071 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381469071 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381469071 DeferredSave.extensions.json DEBUG Save changes | |
1480381469072 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381469073 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381469082 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381469082 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381469083 DeferredSave.extensions.json DEBUG Save changes | |
1480381469083 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381469084 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381469087 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381469088 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381469088 DeferredSave.extensions.json DEBUG Save changes | |
1480381469089 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381469089 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381469092 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381469092 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381469093 DeferredSave.extensions.json DEBUG Save changes | |
1480381469093 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381469093 DeferredSave.extensions.json DEBUG Save changes | |
1480381469093 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3379d06b-9af4-4006-b5d8-6dea4e5822c0}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381469093 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381469094 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{5354f16f-6fa1-44ec-989f-611d8356d245}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381469094 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381469095 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0a572f51-57f7-4a44-8471-b4db83a4e90c}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381469095 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381469095 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{dd65f649-3bcc-412d-b569-bb70ef23b43b}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381469095 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381469096 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{31b81ad3-ca10-4f42-98b6-886244864341}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381469096 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381469098 DeferredSave.extensions.json DEBUG Save changes | |
1480381469098 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381469098 addons.xpi-utils DEBUG Updating add-on states | |
1480381469098 addons.xpi-utils DEBUG Writing add-ons list | |
1480381469099 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381469100 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381469100 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381469100 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381469100 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381469101 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381469101 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381469102 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381469105 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381469105 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381469105 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381469105 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381469105 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381469106 addons.manager DEBUG Starting provider: GMPProvider | |
1480381469113 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381469113 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381469113 addons.manager DEBUG Starting provider: PluginProvider | |
1480381469113 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381469114 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381469114 addons.manager DEBUG Completed startup sequence | |
1480381469313 Marionette INFO Listening on port 50900 | |
1480381469584 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381469584 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381469584 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381469602 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381469603 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381469604 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381469608 DeferredSave.extensions.json DEBUG Starting write | |
1480381469774 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381469775 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5173): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5173): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5173): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5173): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5090): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5090): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5090): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5090): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5173] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5173] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5173] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381472143 geckodriver INFO Listening on 127.0.0.1:55181 | |
1480381473139 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.As9nt3su4XL9 | |
1480381473141 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381473143 geckodriver::marionette INFO Connecting to Marionette on localhost:39675 | |
(firefox:5337): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5337): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5337): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5337): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381473354 addons.manager DEBUG Application has been upgraded | |
1480381473372 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381473374 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381473379 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381473381 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381473381 addons.manager DEBUG Starting provider: XPIProvider | |
1480381473382 addons.xpi DEBUG startup | |
1480381473382 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381473383 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381473384 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381473384 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381473384 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381473385 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381473385 addons.xpi DEBUG checkForChanges | |
1480381473386 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381473387 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381473388 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381473389 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381473389 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381473389 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381473390 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381473390 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381473391 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381473391 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381473392 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381473392 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381473400 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.As9nt3su4XL9/extensions.json | |
1480381473401 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381473410 DeferredSave.extensions.json DEBUG Save changes | |
1480381473411 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381473413 DeferredSave.extensions.json DEBUG Starting timer | |
1480381473414 DeferredSave.extensions.json DEBUG Save changes | |
1480381473414 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381473420 DeferredSave.extensions.json DEBUG Save changes | |
1480381473420 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381473426 DeferredSave.extensions.json DEBUG Save changes | |
1480381473427 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381473430 DeferredSave.extensions.json DEBUG Save changes | |
1480381473431 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381473438 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381473443 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381473443 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381473444 DeferredSave.extensions.json DEBUG Save changes | |
1480381473445 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381473445 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381473455 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381473455 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381473455 DeferredSave.extensions.json DEBUG Save changes | |
1480381473455 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381473456 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381473459 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381473460 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381473460 DeferredSave.extensions.json DEBUG Save changes | |
1480381473461 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381473461 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381473464 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381473464 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381473465 DeferredSave.extensions.json DEBUG Save changes | |
1480381473465 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381473465 DeferredSave.extensions.json DEBUG Save changes | |
1480381473466 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{04fb3d7d-a3b6-4ec6-8781-bc5a413405b0}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381473466 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381473466 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ad1ff859-6831-4391-9af3-dfc403104853}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381473466 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381473467 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c328d4e4-e8c6-48b2-9a43-8547f4df8957}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381473467 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381473467 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a2a8c98e-2976-4f7c-8c9a-5627bbb05381}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381473467 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381473468 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{f5e1849f-cfc1-41a7-be34-3e30db763588}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381473468 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381473469 DeferredSave.extensions.json DEBUG Save changes | |
1480381473469 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381473469 addons.xpi-utils DEBUG Updating add-on states | |
1480381473470 addons.xpi-utils DEBUG Writing add-ons list | |
1480381473470 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381473471 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381473471 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381473471 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381473472 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381473472 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381473472 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381473473 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381473476 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381473476 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381473476 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381473476 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381473476 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381473477 addons.manager DEBUG Starting provider: GMPProvider | |
1480381473484 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381473484 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381473484 addons.manager DEBUG Starting provider: PluginProvider | |
1480381473485 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381473485 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381473485 addons.manager DEBUG Completed startup sequence | |
1480381473670 Marionette INFO Listening on port 39675 | |
1480381473886 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381473886 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381473886 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381473902 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381473902 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381473903 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381473907 DeferredSave.extensions.json DEBUG Starting write | |
1480381474042 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381474043 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5409): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5409): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5409): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5409): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5337): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5337): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5337): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5337): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5409] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5409] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5409] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381476554 geckodriver INFO Listening on 127.0.0.1:56627 | |
1480381477553 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.bXufzwyJTWTG | |
1480381477555 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381477558 geckodriver::marionette INFO Connecting to Marionette on localhost:47917 | |
(firefox:5580): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5580): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5580): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5580): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381477789 addons.manager DEBUG Application has been upgraded | |
1480381477807 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381477810 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381477815 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381477817 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381477818 addons.manager DEBUG Starting provider: XPIProvider | |
1480381477818 addons.xpi DEBUG startup | |
1480381477819 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381477820 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381477820 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381477820 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381477821 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381477821 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381477822 addons.xpi DEBUG checkForChanges | |
1480381477822 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381477823 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381477824 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381477825 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381477825 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381477826 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381477826 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381477827 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381477827 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381477827 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381477828 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381477828 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381477837 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.bXufzwyJTWTG/extensions.json | |
1480381477838 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381477848 DeferredSave.extensions.json DEBUG Save changes | |
1480381477848 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381477851 DeferredSave.extensions.json DEBUG Starting timer | |
1480381477852 DeferredSave.extensions.json DEBUG Save changes | |
1480381477852 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381477857 DeferredSave.extensions.json DEBUG Save changes | |
1480381477857 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381477863 DeferredSave.extensions.json DEBUG Save changes | |
1480381477864 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381477868 DeferredSave.extensions.json DEBUG Save changes | |
1480381477868 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381477875 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381477880 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381477880 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381477880 DeferredSave.extensions.json DEBUG Save changes | |
1480381477881 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381477882 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381477893 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381477893 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381477893 DeferredSave.extensions.json DEBUG Save changes | |
1480381477893 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381477894 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381477897 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381477898 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381477898 DeferredSave.extensions.json DEBUG Save changes | |
1480381477898 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381477899 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381477902 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381477902 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381477903 DeferredSave.extensions.json DEBUG Save changes | |
1480381477903 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381477903 DeferredSave.extensions.json DEBUG Save changes | |
1480381477903 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a3922478-9408-432b-87db-16533cf31851}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381477904 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381477904 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c00d3aa1-8e05-42c7-9b63-df5b05cd69f9}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381477905 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381477905 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e5fd4dc3-b499-4a66-88a3-c82ace807ce0}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381477905 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381477906 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ef594d5c-e72b-4f8d-b034-9ef8c00e22c1}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381477906 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381477906 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{d81e8981-32b6-4d4f-ac91-6864ea81ce57}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381477906 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381477908 DeferredSave.extensions.json DEBUG Save changes | |
1480381477908 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381477908 addons.xpi-utils DEBUG Updating add-on states | |
1480381477909 addons.xpi-utils DEBUG Writing add-ons list | |
1480381477910 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381477910 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381477910 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381477911 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381477911 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381477911 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381477912 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381477912 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381477916 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381477916 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381477916 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381477916 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381477916 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381477917 addons.manager DEBUG Starting provider: GMPProvider | |
1480381477925 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381477925 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381477925 addons.manager DEBUG Starting provider: PluginProvider | |
1480381477925 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381477925 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381477926 addons.manager DEBUG Completed startup sequence | |
1480381478164 Marionette INFO Listening on port 47917 | |
1480381478547 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381478547 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381478547 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381478562 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381478563 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381478564 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381478567 DeferredSave.extensions.json DEBUG Starting write | |
1480381478715 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381478716 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5659): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5659): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5659): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5659): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5580): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5580): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5580): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5580): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5659] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5659] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480381481060 geckodriver INFO Listening on 127.0.0.1:57364 | |
1480381482059 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.CFjIfqocDdfo | |
1480381482061 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480381482063 geckodriver::marionette INFO Connecting to Marionette on localhost:44544 | |
(firefox:5823): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5823): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5823): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5823): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480381482297 addons.manager DEBUG Application has been upgraded | |
1480381482315 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480381482317 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480381482322 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480381482324 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480381482325 addons.manager DEBUG Starting provider: XPIProvider | |
1480381482325 addons.xpi DEBUG startup | |
1480381482326 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480381482327 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381482327 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381482327 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381482328 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480381482328 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480381482329 addons.xpi DEBUG checkForChanges | |
1480381482329 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480381482330 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381482331 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381482332 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381482332 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381482333 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381482333 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381482334 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480381482334 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381482334 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480381482335 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381482335 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480381482343 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.CFjIfqocDdfo/extensions.json | |
1480381482345 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480381482353 DeferredSave.extensions.json DEBUG Save changes | |
1480381482354 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381482356 DeferredSave.extensions.json DEBUG Starting timer | |
1480381482357 DeferredSave.extensions.json DEBUG Save changes | |
1480381482358 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381482363 DeferredSave.extensions.json DEBUG Save changes | |
1480381482363 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480381482369 DeferredSave.extensions.json DEBUG Save changes | |
1480381482370 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480381482373 DeferredSave.extensions.json DEBUG Save changes | |
1480381482373 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381482380 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381482385 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381482385 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381482385 DeferredSave.extensions.json DEBUG Save changes | |
1480381482386 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381482387 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381482396 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480381482396 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381482396 DeferredSave.extensions.json DEBUG Save changes | |
1480381482396 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381482397 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381482400 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480381482401 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381482401 DeferredSave.extensions.json DEBUG Save changes | |
1480381482402 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480381482402 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480381482405 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480381482405 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480381482406 DeferredSave.extensions.json DEBUG Save changes | |
1480381482406 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480381482406 DeferredSave.extensions.json DEBUG Save changes | |
1480381482406 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{89173203-f302-42c3-b055-b639ee2f9068}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480381482406 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381482407 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{2c5e978c-d05a-4bdf-bae9-7be17fe8f733}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381482407 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381482407 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{9d6459cb-ba97-4134-9db2-bdfeef70b55a}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381482407 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381482408 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{fc6ea892-ef3d-4a90-9ac5-c5c6e4cee3bf}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480381482408 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480381482408 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{9f5b656c-915d-452b-ac62-4a93b0683ade}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480381482408 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480381482410 DeferredSave.extensions.json DEBUG Save changes | |
1480381482410 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480381482410 addons.xpi-utils DEBUG Updating add-on states | |
1480381482410 addons.xpi-utils DEBUG Writing add-ons list | |
1480381482411 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381482411 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381482412 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381482412 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480381482412 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381482413 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480381482413 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480381482413 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480381482416 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480381482417 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480381482417 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480381482417 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480381482417 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480381482417 addons.manager DEBUG Starting provider: GMPProvider | |
1480381482425 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480381482425 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480381482425 addons.manager DEBUG Starting provider: PluginProvider | |
1480381482425 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480381482426 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480381482426 addons.manager DEBUG Completed startup sequence | |
1480381482690 Marionette INFO Listening on port 44544 | |
1480381483068 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480381483068 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480381483069 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480381483086 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480381483086 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480381483087 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480381483090 DeferredSave.extensions.json DEBUG Starting write | |
1480381483228 DeferredSave.extensions.json DEBUG Write succeeded | |
1480381483229 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5903): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5903): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5903): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5903): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5823): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5823): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5823): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5903] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5903] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5903] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480383560716 geckodriver INFO Listening on 127.0.0.1:57336 | |
1480383561718 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.Ig81tOdJizqw | |
1480383561737 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480383561783 geckodriver::marionette INFO Connecting to Marionette on localhost:57735 | |
(firefox:943): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:943): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:943): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:943): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480383562131 addons.manager DEBUG Application has been upgraded | |
1480383562151 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480383562153 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480383562157 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480383562159 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480383562160 addons.manager DEBUG Starting provider: XPIProvider | |
1480383562161 addons.xpi DEBUG startup | |
1480383562161 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480383562162 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480383562163 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480383562163 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480383562163 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480383562164 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480383562165 addons.xpi DEBUG checkForChanges | |
1480383562165 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480383562166 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480383562167 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383562168 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480383562168 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383562169 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480383562169 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383562170 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480383562170 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383562170 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480383562171 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480383562171 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480383562180 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.Ig81tOdJizqw/extensions.json | |
1480383562181 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480383562191 DeferredSave.extensions.json DEBUG Save changes | |
1480383562191 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480383562194 DeferredSave.extensions.json DEBUG Starting timer | |
1480383562195 DeferredSave.extensions.json DEBUG Save changes | |
1480383562195 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480383562202 DeferredSave.extensions.json DEBUG Save changes | |
1480383562202 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480383562208 DeferredSave.extensions.json DEBUG Save changes | |
1480383562209 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480383562213 DeferredSave.extensions.json DEBUG Save changes | |
1480383562213 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480383562220 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480383562225 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480383562225 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480383562225 DeferredSave.extensions.json DEBUG Save changes | |
1480383562226 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480383562227 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480383562236 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480383562236 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480383562237 DeferredSave.extensions.json DEBUG Save changes | |
1480383562237 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480383562238 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480383562240 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480383562241 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480383562242 DeferredSave.extensions.json DEBUG Save changes | |
1480383562242 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480383562243 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480383562246 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480383562246 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480383562246 DeferredSave.extensions.json DEBUG Save changes | |
1480383562246 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480383562247 DeferredSave.extensions.json DEBUG Save changes | |
1480383562247 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d3cda75f-f5a5-480c-a6a0-609dbd8aacbf}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480383562247 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383562247 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{7376e301-e404-4c4d-ac4e-6a64bbb67fe6}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480383562248 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383562248 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d37b9996-8311-4757-9ba0-4d1ea96709f1}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480383562248 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383562248 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{388b2d70-be4f-4721-a450-838e62c79c82}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480383562248 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383562249 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{4bbd9238-1324-451f-8d6b-21c68f831c16}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480383562249 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480383562250 DeferredSave.extensions.json DEBUG Save changes | |
1480383562250 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480383562250 addons.xpi-utils DEBUG Updating add-on states | |
1480383562251 addons.xpi-utils DEBUG Writing add-ons list | |
1480383562252 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480383562252 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480383562252 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480383562253 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480383562253 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480383562253 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480383562254 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480383562254 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480383562257 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480383562258 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480383562258 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480383562258 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480383562258 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480383562258 addons.manager DEBUG Starting provider: GMPProvider | |
1480383562266 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480383562266 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480383562266 addons.manager DEBUG Starting provider: PluginProvider | |
1480383562266 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480383562267 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480383562267 addons.manager DEBUG Completed startup sequence | |
1480383562469 Marionette INFO Listening on port 57735 | |
1480383562688 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480383562688 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480383562688 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480383562704 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480383562705 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480383562706 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480383562710 DeferredSave.extensions.json DEBUG Starting write | |
1480383562884 DeferredSave.extensions.json DEBUG Write succeeded | |
1480383562885 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1083): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1083): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1083): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1083): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:943): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:943): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:943): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:943): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:943): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7b18152b50' of type 'MaiAtkType13b' | |
(firefox:943): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:943): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7b2e84fb00' of type 'MaiAtkType13b' | |
(firefox:943): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7b2e82b510' of type 'MaiAtkType13b' | |
[Child 1083] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1083] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1083] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480383571038 geckodriver INFO Listening on 127.0.0.1:37577 | |
1480383572039 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.rRODwGL08lQa | |
1480383572041 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480383572044 geckodriver::marionette INFO Connecting to Marionette on localhost:38813 | |
(firefox:1361): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1361): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1361): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1361): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480383572254 addons.manager DEBUG Application has been upgraded | |
1480383572273 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480383572275 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480383572280 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480383572282 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480383572283 addons.manager DEBUG Starting provider: XPIProvider | |
1480383572283 addons.xpi DEBUG startup | |
1480383572284 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480383572285 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480383572285 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480383572285 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480383572286 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480383572286 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480383572287 addons.xpi DEBUG checkForChanges | |
1480383572288 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480383572289 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480383572290 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383572290 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480383572291 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383572291 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480383572292 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383572292 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480383572292 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383572293 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480383572294 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480383572294 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480383572302 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.rRODwGL08lQa/extensions.json | |
1480383572304 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480383572313 DeferredSave.extensions.json DEBUG Save changes | |
1480383572314 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480383572316 DeferredSave.extensions.json DEBUG Starting timer | |
1480383572317 DeferredSave.extensions.json DEBUG Save changes | |
1480383572318 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480383572323 DeferredSave.extensions.json DEBUG Save changes | |
1480383572323 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480383572329 DeferredSave.extensions.json DEBUG Save changes | |
1480383572330 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480383572334 DeferredSave.extensions.json DEBUG Save changes | |
1480383572335 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480383572341 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480383572346 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480383572346 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480383572347 DeferredSave.extensions.json DEBUG Save changes | |
1480383572348 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480383572348 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480383572358 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480383572358 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480383572358 DeferredSave.extensions.json DEBUG Save changes | |
1480383572358 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480383572359 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480383572362 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480383572363 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480383572363 DeferredSave.extensions.json DEBUG Save changes | |
1480383572364 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480383572364 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480383572367 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480383572368 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480383572368 DeferredSave.extensions.json DEBUG Save changes | |
1480383572368 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480383572368 DeferredSave.extensions.json DEBUG Save changes | |
1480383572369 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{39585ec4-9c42-4082-b2a1-f78b5e1d1ca5}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480383572369 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383572369 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{73e51e45-8532-487a-bb9e-7213c08c8a93}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480383572369 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383572370 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{12fbb9be-7d79-4b86-8933-5a9b8c04ecbb}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480383572370 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383572370 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b9051409-39b2-49dc-a6ae-e93f85a4a64b}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480383572370 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383572371 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{04aaa6b7-0df7-4ec8-a181-9262f4fa3210}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480383572371 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480383572372 DeferredSave.extensions.json DEBUG Save changes | |
1480383572372 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480383572372 addons.xpi-utils DEBUG Updating add-on states | |
1480383572373 addons.xpi-utils DEBUG Writing add-ons list | |
1480383572374 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480383572374 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480383572374 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480383572375 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480383572375 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480383572375 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480383572376 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480383572376 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480383572380 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480383572380 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480383572380 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480383572380 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480383572380 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480383572381 addons.manager DEBUG Starting provider: GMPProvider | |
1480383572388 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480383572389 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480383572389 addons.manager DEBUG Starting provider: PluginProvider | |
1480383572389 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480383572389 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480383572389 addons.manager DEBUG Completed startup sequence | |
1480383572573 Marionette INFO Listening on port 38813 | |
1480383572776 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480383572776 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480383572776 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480383572793 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480383572794 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480383572795 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480383572799 DeferredSave.extensions.json DEBUG Starting write | |
1480383572934 DeferredSave.extensions.json DEBUG Write succeeded | |
1480383572935 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1433): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1433): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1433): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1433): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1361): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1361): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1361): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1361): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1361): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f12c25d9420' of type 'MaiAtkType13b' | |
(firefox:1361): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1361): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f12c41fec40' of type 'MaiAtkType13b' | |
(firefox:1361): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f12c41fea60' of type 'MaiAtkType13b' | |
(firefox:1361): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f12c1e835b0' of type 'MaiAtkType13b' | |
[Child 1433] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1433] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1433] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480383581981 geckodriver INFO Listening on 127.0.0.1:53422 | |
1480383582982 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.Tvw0FspjNucK | |
1480383582984 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480383582986 geckodriver::marionette INFO Connecting to Marionette on localhost:47173 | |
(firefox:1722): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480383583242 addons.manager DEBUG Application has been upgraded | |
1480383583261 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480383583263 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480383583268 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480383583270 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480383583271 addons.manager DEBUG Starting provider: XPIProvider | |
1480383583271 addons.xpi DEBUG startup | |
1480383583272 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480383583273 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480383583273 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480383583274 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480383583274 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480383583275 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480383583275 addons.xpi DEBUG checkForChanges | |
1480383583276 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480383583277 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480383583278 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383583278 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480383583279 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383583279 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480383583280 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383583280 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480383583280 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383583281 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480383583282 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480383583282 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480383583291 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.Tvw0FspjNucK/extensions.json | |
1480383583292 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480383583302 DeferredSave.extensions.json DEBUG Save changes | |
1480383583302 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480383583305 DeferredSave.extensions.json DEBUG Starting timer | |
1480383583306 DeferredSave.extensions.json DEBUG Save changes | |
1480383583306 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480383583312 DeferredSave.extensions.json DEBUG Save changes | |
1480383583312 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480383583318 DeferredSave.extensions.json DEBUG Save changes | |
1480383583319 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480383583323 DeferredSave.extensions.json DEBUG Save changes | |
1480383583323 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480383583330 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480383583335 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480383583335 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480383583336 DeferredSave.extensions.json DEBUG Save changes | |
1480383583337 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480383583337 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480383583347 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480383583347 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480383583348 DeferredSave.extensions.json DEBUG Save changes | |
1480383583348 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480383583349 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480383583351 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480383583353 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480383583353 DeferredSave.extensions.json DEBUG Save changes | |
1480383583354 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480383583354 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480383583357 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480383583357 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480383583358 DeferredSave.extensions.json DEBUG Save changes | |
1480383583358 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480383583358 DeferredSave.extensions.json DEBUG Save changes | |
1480383583359 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{80208a0e-abf4-4849-a0ad-78ebfa6cd04d}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480383583359 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383583359 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c174f9bd-d36b-467c-8a86-2438d1d6110a}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480383583359 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383583360 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b4ca6b11-18f4-465a-a9ac-394998fabb58}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480383583360 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383583360 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c1e123ef-dce4-4d40-8e8e-053c3bca8280}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480383583360 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480383583361 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{e4f5fa51-ca00-48c5-bf26-33e9f11c626b}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480383583361 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480383583362 DeferredSave.extensions.json DEBUG Save changes | |
1480383583362 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480383583362 addons.xpi-utils DEBUG Updating add-on states | |
1480383583363 addons.xpi-utils DEBUG Writing add-ons list | |
1480383583364 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480383583364 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480383583364 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480383583365 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480383583365 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480383583365 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480383583366 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480383583366 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480383583369 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480383583370 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480383583370 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480383583370 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480383583370 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480383583371 addons.manager DEBUG Starting provider: GMPProvider | |
1480383583378 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480383583378 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480383583378 addons.manager DEBUG Starting provider: PluginProvider | |
1480383583378 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480383583379 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480383583379 addons.manager DEBUG Completed startup sequence | |
1480383583640 Marionette INFO Listening on port 47173 | |
1480383584015 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480383584015 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480383584015 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480383584034 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480383584035 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480383584037 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480383584042 DeferredSave.extensions.json DEBUG Starting write | |
1480383584173 DeferredSave.extensions.json DEBUG Write succeeded | |
1480383584175 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1800): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1800): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1800): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1800): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 1800] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1800] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1800] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480388257043 geckodriver INFO Listening on 127.0.0.1:59364 | |
1480388258042 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.CcPww5K4599d | |
1480388258052 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480388258057 geckodriver::marionette INFO Connecting to Marionette on localhost:41110 | |
(firefox:944): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:944): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:944): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:944): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388258339 addons.manager DEBUG Application has been upgraded | |
1480388258359 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480388258361 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480388258365 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480388258368 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480388258368 addons.manager DEBUG Starting provider: XPIProvider | |
1480388258369 addons.xpi DEBUG startup | |
1480388258370 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480388258371 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388258371 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388258371 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388258372 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388258372 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480388258373 addons.xpi DEBUG checkForChanges | |
1480388258373 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480388258375 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388258375 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388258376 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388258377 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388258377 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388258378 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388258378 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388258378 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388258379 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480388258379 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388258380 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480388258388 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.CcPww5K4599d/extensions.json | |
1480388258389 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480388258398 DeferredSave.extensions.json DEBUG Save changes | |
1480388258399 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388258401 DeferredSave.extensions.json DEBUG Starting timer | |
1480388258403 DeferredSave.extensions.json DEBUG Save changes | |
1480388258403 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388258408 DeferredSave.extensions.json DEBUG Save changes | |
1480388258408 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388258415 DeferredSave.extensions.json DEBUG Save changes | |
1480388258416 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480388258419 DeferredSave.extensions.json DEBUG Save changes | |
1480388258420 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388258426 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388258431 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388258431 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388258431 DeferredSave.extensions.json DEBUG Save changes | |
1480388258432 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388258433 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388258442 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388258442 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388258443 DeferredSave.extensions.json DEBUG Save changes | |
1480388258443 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388258444 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388258446 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480388258448 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388258448 DeferredSave.extensions.json DEBUG Save changes | |
1480388258448 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388258449 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388258452 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480388258452 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388258452 DeferredSave.extensions.json DEBUG Save changes | |
1480388258452 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480388258453 DeferredSave.extensions.json DEBUG Save changes | |
1480388258453 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d0c7359c-9464-4a29-b59f-fe68e9de95b8}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480388258453 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388258454 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{0f71c3c4-2945-4cb8-a564-45aaff430633}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388258454 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388258454 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{51367a5b-2295-4007-b17c-10dea53d277d}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388258454 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388258454 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3a92a2ad-2584-471a-b527-c5b02cb456d9}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388258455 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388258455 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{aa3aaba4-4dbe-4e0e-b653-98da03b4e56e}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480388258455 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388258456 DeferredSave.extensions.json DEBUG Save changes | |
1480388258456 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480388258456 addons.xpi-utils DEBUG Updating add-on states | |
1480388258457 addons.xpi-utils DEBUG Writing add-ons list | |
1480388258458 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388258458 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388258458 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388258459 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388258459 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388258459 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480388258460 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388258460 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480388258463 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480388258464 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480388258464 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480388258464 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480388258464 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480388258464 addons.manager DEBUG Starting provider: GMPProvider | |
1480388258472 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480388258472 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480388258472 addons.manager DEBUG Starting provider: PluginProvider | |
1480388258472 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480388258472 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480388258473 addons.manager DEBUG Completed startup sequence | |
1480388258662 Marionette INFO Listening on port 41110 | |
1480388258872 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480388258872 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480388258873 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480388258889 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480388258889 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480388258891 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480388258894 DeferredSave.extensions.json DEBUG Starting write | |
1480388259046 DeferredSave.extensions.json DEBUG Write succeeded | |
1480388259047 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1064): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1064): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1064): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1064): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:944): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:944): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:944): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:944): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:944): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f785e94f6a0' of type 'MaiAtkType13b' | |
(firefox:944): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:944): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f786ae2f1a0' of type 'MaiAtkType13b' | |
(firefox:944): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f785e78cdd0' of type 'MaiAtkType13b' | |
[Child 1064] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1064] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1064] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480388270311 geckodriver INFO Listening on 127.0.0.1:33533 | |
1480388271312 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.fflTWDI4bEst | |
1480388271314 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480388271449 geckodriver::marionette INFO Connecting to Marionette on localhost:51943 | |
(firefox:1370): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1370): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1370): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1370): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388271735 addons.manager DEBUG Application has been upgraded | |
1480388271753 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480388271755 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480388271760 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480388271762 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480388271763 addons.manager DEBUG Starting provider: XPIProvider | |
1480388271763 addons.xpi DEBUG startup | |
1480388271764 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480388271765 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388271765 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388271765 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388271766 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388271766 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480388271767 addons.xpi DEBUG checkForChanges | |
1480388271767 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480388271768 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388271769 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388271770 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388271770 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388271771 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388271771 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388271772 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388271772 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388271772 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480388271773 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388271773 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480388271781 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.fflTWDI4bEst/extensions.json | |
1480388271782 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480388271791 DeferredSave.extensions.json DEBUG Save changes | |
1480388271792 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388271794 DeferredSave.extensions.json DEBUG Starting timer | |
1480388271796 DeferredSave.extensions.json DEBUG Save changes | |
1480388271796 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388271801 DeferredSave.extensions.json DEBUG Save changes | |
1480388271801 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388271807 DeferredSave.extensions.json DEBUG Save changes | |
1480388271808 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480388271812 DeferredSave.extensions.json DEBUG Save changes | |
1480388271812 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388271819 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388271823 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388271824 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388271824 DeferredSave.extensions.json DEBUG Save changes | |
1480388271825 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388271825 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388271835 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388271835 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388271835 DeferredSave.extensions.json DEBUG Save changes | |
1480388271835 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388271836 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388271839 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480388271840 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388271840 DeferredSave.extensions.json DEBUG Save changes | |
1480388271841 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388271841 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388271844 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480388271844 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388271845 DeferredSave.extensions.json DEBUG Save changes | |
1480388271845 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480388271845 DeferredSave.extensions.json DEBUG Save changes | |
1480388271846 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f81bc925-c123-4801-ab30-dfa8ce4a92d8}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480388271846 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388271846 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{5137da1a-4e28-442f-a4fe-40684e50f8f2}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388271846 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388271847 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{97dc897c-b7a9-444d-99b4-7e5e0eb48d14}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388271847 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388271847 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3e621653-21f8-4b44-8521-b7ff7bba9fa1}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388271847 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388271847 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{0efdfd39-00aa-4e41-898f-e9d969b74b1b}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480388271848 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388271849 DeferredSave.extensions.json DEBUG Save changes | |
1480388271849 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480388271849 addons.xpi-utils DEBUG Updating add-on states | |
1480388271850 addons.xpi-utils DEBUG Writing add-ons list | |
1480388271851 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388271852 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388271852 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388271852 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388271853 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388271853 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480388271853 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388271854 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480388271857 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480388271858 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480388271858 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480388271858 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480388271858 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480388271859 addons.manager DEBUG Starting provider: GMPProvider | |
1480388271866 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480388271867 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480388271867 addons.manager DEBUG Starting provider: PluginProvider | |
1480388271867 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480388271867 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480388271868 addons.manager DEBUG Completed startup sequence | |
1480388272085 Marionette INFO Listening on port 51943 | |
1480388272341 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480388272341 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480388272341 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480388272357 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480388272357 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480388272358 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480388272362 DeferredSave.extensions.json DEBUG Starting write | |
1480388272501 DeferredSave.extensions.json DEBUG Write succeeded | |
1480388272501 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1444): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1444): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1444): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1444): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1370): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1370): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1370): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1370): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1370): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fab74e47740' of type 'MaiAtkType13b' | |
(firefox:1370): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1370): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fab74e5b100' of type 'MaiAtkType13b' | |
(firefox:1370): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fab75f5b0b0' of type 'MaiAtkType13b' | |
(firefox:1370): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fab74554560' of type 'MaiAtkType13b' | |
[Child 1444] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1444] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1444] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480388281792 geckodriver INFO Listening on 127.0.0.1:59272 | |
1480388282793 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.rWQXSPqhZhZ5 | |
1480388282795 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480388282797 geckodriver::marionette INFO Connecting to Marionette on localhost:39705 | |
(firefox:1729): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1729): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1729): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1729): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388283028 addons.manager DEBUG Application has been upgraded | |
1480388283046 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480388283048 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480388283052 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480388283055 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480388283055 addons.manager DEBUG Starting provider: XPIProvider | |
1480388283056 addons.xpi DEBUG startup | |
1480388283057 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480388283057 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388283058 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388283058 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388283059 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388283059 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480388283060 addons.xpi DEBUG checkForChanges | |
1480388283060 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480388283061 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388283062 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388283063 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388283063 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388283064 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388283064 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388283065 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388283065 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388283065 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480388283066 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388283066 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480388283075 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.rWQXSPqhZhZ5/extensions.json | |
1480388283076 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480388283087 DeferredSave.extensions.json DEBUG Save changes | |
1480388283088 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388283090 DeferredSave.extensions.json DEBUG Starting timer | |
1480388283092 DeferredSave.extensions.json DEBUG Save changes | |
1480388283092 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388283097 DeferredSave.extensions.json DEBUG Save changes | |
1480388283097 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388283103 DeferredSave.extensions.json DEBUG Save changes | |
1480388283104 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480388283108 DeferredSave.extensions.json DEBUG Save changes | |
1480388283109 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388283115 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388283120 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388283120 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388283120 DeferredSave.extensions.json DEBUG Save changes | |
1480388283121 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388283122 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388283132 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388283132 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388283132 DeferredSave.extensions.json DEBUG Save changes | |
1480388283132 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388283133 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388283136 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480388283137 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388283137 DeferredSave.extensions.json DEBUG Save changes | |
1480388283138 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388283138 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388283141 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480388283141 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388283142 DeferredSave.extensions.json DEBUG Save changes | |
1480388283142 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480388283142 DeferredSave.extensions.json DEBUG Save changes | |
1480388283142 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{acafcac9-5e3d-4904-ad80-3af4cb0ce9f3}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480388283143 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388283143 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{fc91f11f-acfd-44f3-98cf-684a080e09b8}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388283143 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388283144 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{5a428436-af9f-408f-a397-fa1f9d522d84}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388283144 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388283144 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e3711f10-50eb-4cb1-b612-103e1def2b29}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388283144 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388283144 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{aa8c265e-88b6-4e0e-9dd9-4dc8c97c481d}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480388283145 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388283146 DeferredSave.extensions.json DEBUG Save changes | |
1480388283146 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480388283146 addons.xpi-utils DEBUG Updating add-on states | |
1480388283147 addons.xpi-utils DEBUG Writing add-ons list | |
1480388283147 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388283148 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388283148 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388283148 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388283149 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388283149 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480388283149 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388283150 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480388283153 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480388283153 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480388283153 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480388283153 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480388283154 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480388283154 addons.manager DEBUG Starting provider: GMPProvider | |
1480388283162 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480388283162 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480388283162 addons.manager DEBUG Starting provider: PluginProvider | |
1480388283162 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480388283162 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480388283163 addons.manager DEBUG Completed startup sequence | |
1480388283391 Marionette INFO Listening on port 39705 | |
1480388283800 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480388283800 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480388283801 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480388283817 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480388283818 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480388283819 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480388283825 DeferredSave.extensions.json DEBUG Starting write | |
1480388283965 DeferredSave.extensions.json DEBUG Write succeeded | |
1480388283966 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1803): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1803): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1803): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1803): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1729): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1729): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1729): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1729): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1729): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f832a6476a0' of type 'MaiAtkType13b' | |
(firefox:1729): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1729): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f832f70ee20' of type 'MaiAtkType13b' | |
(firefox:1729): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f832c2d8b00' of type 'MaiAtkType13b' | |
[Child 1803] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1803] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1803] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480388306736 geckodriver INFO Listening on 127.0.0.1:36338 | |
1480388307829 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.hbG5Fg0jJIOu | |
1480388307831 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480388307834 geckodriver::marionette INFO Connecting to Marionette on localhost:47394 | |
(firefox:2118): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388308048 addons.manager DEBUG Application has been upgraded | |
1480388308066 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480388308068 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480388308073 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480388308075 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480388308076 addons.manager DEBUG Starting provider: XPIProvider | |
1480388308077 addons.xpi DEBUG startup | |
1480388308077 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480388308078 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388308078 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388308079 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388308079 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388308080 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480388308081 addons.xpi DEBUG checkForChanges | |
1480388308082 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480388308083 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388308085 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388308086 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388308086 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388308086 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388308087 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388308088 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388308088 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388308089 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480388308090 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388308090 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480388308100 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.hbG5Fg0jJIOu/extensions.json | |
1480388308101 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480388308110 DeferredSave.extensions.json DEBUG Save changes | |
1480388308111 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388308113 DeferredSave.extensions.json DEBUG Starting timer | |
1480388308114 DeferredSave.extensions.json DEBUG Save changes | |
1480388308114 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388308120 DeferredSave.extensions.json DEBUG Save changes | |
1480388308120 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388308126 DeferredSave.extensions.json DEBUG Save changes | |
1480388308127 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480388308131 DeferredSave.extensions.json DEBUG Save changes | |
1480388308132 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388308138 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388308143 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388308143 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388308143 DeferredSave.extensions.json DEBUG Save changes | |
1480388308144 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388308145 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388308156 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388308156 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388308157 DeferredSave.extensions.json DEBUG Save changes | |
1480388308157 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388308158 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388308162 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480388308163 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388308164 DeferredSave.extensions.json DEBUG Save changes | |
1480388308164 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388308165 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388308169 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480388308169 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388308170 DeferredSave.extensions.json DEBUG Save changes | |
1480388308170 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480388308170 DeferredSave.extensions.json DEBUG Save changes | |
1480388308171 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{07601a20-02ea-48ca-81da-9b9c18a9b0fd}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480388308171 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388308172 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{37010d5a-8255-4fd4-a174-bf84bb699030}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388308172 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388308172 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{6ef41b09-4451-4c50-8384-727f50a86630}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388308172 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388308173 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a34d2015-3cc6-4cc3-9faf-32563bd77c0c}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388308173 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388308173 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{55c8b1c6-952e-4b2d-a153-e6a6b1e06aca}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480388308173 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388308175 DeferredSave.extensions.json DEBUG Save changes | |
1480388308175 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480388308175 addons.xpi-utils DEBUG Updating add-on states | |
1480388308176 addons.xpi-utils DEBUG Writing add-ons list | |
1480388308177 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388308178 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388308178 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388308178 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388308179 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388308179 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480388308180 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388308180 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480388308185 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480388308185 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480388308185 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480388308185 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480388308186 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480388308186 addons.manager DEBUG Starting provider: GMPProvider | |
1480388308196 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480388308197 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480388308197 addons.manager DEBUG Starting provider: PluginProvider | |
1480388308197 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480388308197 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480388308198 addons.manager DEBUG Completed startup sequence | |
1480388308456 Marionette INFO Listening on port 47394 | |
1480388308855 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480388308855 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480388308856 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480388308874 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480388308874 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480388308876 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480388308880 DeferredSave.extensions.json DEBUG Starting write | |
1480388308994 DeferredSave.extensions.json DEBUG Write succeeded | |
1480388308995 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2199): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2199): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2199): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2199): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2118): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f919b4f8f60' of type 'MaiAtkType13b' | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f919c3b78d0' of type 'MaiAtkType139' | |
(firefox:2118): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f9198cb9c90' of type 'MaiAtkType139' | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f919d3d76f0' of type 'MaiAtkType13b' | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f919d42bba0' of type 'MaiAtkType139' | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f919aa32fb0' of type 'MaiAtkType139' | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f919aa32510' of type 'MaiAtkType13b' | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f919fd7a1f0' of type 'MaiAtkType139' | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f91a0979d30' of type 'MaiAtkType13b' | |
(firefox:2118): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f91a1d3bb50' of type 'MaiAtkType139' | |
[Child 2199] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2199] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480388355684 geckodriver INFO Listening on 127.0.0.1:50802 | |
1480388356683 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.NTBGqO99J4rQ | |
1480388356686 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480388356689 geckodriver::marionette INFO Connecting to Marionette on localhost:57477 | |
(firefox:2780): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2780): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2780): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2780): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388356909 addons.manager DEBUG Application has been upgraded | |
1480388356928 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480388356931 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480388356935 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480388356937 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480388356938 addons.manager DEBUG Starting provider: XPIProvider | |
1480388356939 addons.xpi DEBUG startup | |
1480388356940 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480388356940 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388356941 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388356941 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388356942 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388356942 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480388356943 addons.xpi DEBUG checkForChanges | |
1480388356943 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480388356944 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388356945 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388356946 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388356946 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388356947 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388356947 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388356948 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388356948 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388356948 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480388356949 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388356949 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480388356960 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.NTBGqO99J4rQ/extensions.json | |
1480388356962 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480388356973 DeferredSave.extensions.json DEBUG Save changes | |
1480388356974 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388356977 DeferredSave.extensions.json DEBUG Starting timer | |
1480388356978 DeferredSave.extensions.json DEBUG Save changes | |
1480388356978 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388356983 DeferredSave.extensions.json DEBUG Save changes | |
1480388356984 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388356989 DeferredSave.extensions.json DEBUG Save changes | |
1480388356990 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480388356994 DeferredSave.extensions.json DEBUG Save changes | |
1480388356995 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388357001 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388357006 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388357007 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388357007 DeferredSave.extensions.json DEBUG Save changes | |
1480388357008 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388357008 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388357018 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388357018 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388357018 DeferredSave.extensions.json DEBUG Save changes | |
1480388357019 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388357019 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388357022 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480388357023 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388357024 DeferredSave.extensions.json DEBUG Save changes | |
1480388357024 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388357025 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388357028 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480388357028 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388357028 DeferredSave.extensions.json DEBUG Save changes | |
1480388357028 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480388357029 DeferredSave.extensions.json DEBUG Save changes | |
1480388357029 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b6e48c02-430b-4fb3-80d0-890be0acc5ef}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480388357029 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388357030 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{92eb7c3d-f109-47b3-9f25-f20a6cc6c3ef}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388357030 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388357030 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e7e8afc4-d5b8-4b97-a84c-b7b24f3d01ae}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388357030 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388357030 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{6322be80-ed8c-4d45-baf8-b969dd583616}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388357031 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388357031 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{c7a8be35-59dc-463d-ba84-44a5c6df332f}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480388357031 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388357032 DeferredSave.extensions.json DEBUG Save changes | |
1480388357032 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480388357032 addons.xpi-utils DEBUG Updating add-on states | |
1480388357033 addons.xpi-utils DEBUG Writing add-ons list | |
1480388357034 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388357034 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388357035 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388357035 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388357035 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388357036 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480388357036 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388357037 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480388357040 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480388357040 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480388357040 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480388357040 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480388357041 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480388357041 addons.manager DEBUG Starting provider: GMPProvider | |
1480388357048 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480388357049 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480388357049 addons.manager DEBUG Starting provider: PluginProvider | |
1480388357049 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480388357049 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480388357050 addons.manager DEBUG Completed startup sequence | |
1480388357278 Marionette INFO Listening on port 57477 | |
1480388357655 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480388357655 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480388357655 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480388357670 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480388357671 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480388357672 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480388357678 DeferredSave.extensions.json DEBUG Starting write | |
1480388357845 DeferredSave.extensions.json DEBUG Write succeeded | |
1480388357846 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2860): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2860): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2860): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2860): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2780): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2780): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2780): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2780): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2780): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fec07a8e9c0' of type 'MaiAtkType13b' | |
(firefox:2780): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2780): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fec07a8edd0' of type 'MaiAtkType13b' | |
(firefox:2780): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fec07a8e830' of type 'MaiAtkType13b' | |
(firefox:2780): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fec0cafe6a0' of type 'MaiAtkType139' | |
(firefox:2780): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fec073d4330' of type 'MaiAtkType13b' | |
(firefox:2780): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fec096ee970' of type 'MaiAtkType139' | |
[Child 2860] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2860] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480388391704 geckodriver INFO Listening on 127.0.0.1:48540 | |
1480388392705 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.5xUHPyOvmsko | |
1480388392707 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480388392727 geckodriver::marionette INFO Connecting to Marionette on localhost:60557 | |
(firefox:3472): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3472): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3472): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3472): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388393364 addons.manager DEBUG Application has been upgraded | |
1480388393384 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480388393386 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480388393390 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480388393392 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480388393393 addons.manager DEBUG Starting provider: XPIProvider | |
1480388393394 addons.xpi DEBUG startup | |
1480388393394 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480388393395 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388393396 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388393396 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388393396 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388393397 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480388393398 addons.xpi DEBUG checkForChanges | |
1480388393398 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480388393399 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388393400 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388393401 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388393401 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388393402 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388393402 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388393403 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388393403 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388393403 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480388393404 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388393404 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480388393412 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.5xUHPyOvmsko/extensions.json | |
1480388393414 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480388393423 DeferredSave.extensions.json DEBUG Save changes | |
1480388393423 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388393425 DeferredSave.extensions.json DEBUG Starting timer | |
1480388393427 DeferredSave.extensions.json DEBUG Save changes | |
1480388393427 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388393433 DeferredSave.extensions.json DEBUG Save changes | |
1480388393433 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388393440 DeferredSave.extensions.json DEBUG Save changes | |
1480388393441 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480388393445 DeferredSave.extensions.json DEBUG Save changes | |
1480388393446 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388393452 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388393457 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388393457 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388393457 DeferredSave.extensions.json DEBUG Save changes | |
1480388393458 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388393459 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388393469 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388393469 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388393470 DeferredSave.extensions.json DEBUG Save changes | |
1480388393470 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388393471 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388393473 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480388393474 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388393475 DeferredSave.extensions.json DEBUG Save changes | |
1480388393475 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388393476 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388393479 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480388393479 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388393479 DeferredSave.extensions.json DEBUG Save changes | |
1480388393479 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480388393479 DeferredSave.extensions.json DEBUG Save changes | |
1480388393480 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{9a37a063-73fd-4658-ad01-6d91b29d5321}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480388393480 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388393480 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{827f09a9-739a-426f-bde9-468fb710bcf0}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388393480 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388393481 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{9ba8aa34-f082-4d75-9201-293bcb5799f6}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388393481 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388393481 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{7399154b-ba73-4476-b9cc-341cff34a364}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388393481 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388393482 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{dbb74edd-ff9f-435f-924d-e83d948b1539}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480388393482 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388393483 DeferredSave.extensions.json DEBUG Save changes | |
1480388393483 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480388393483 addons.xpi-utils DEBUG Updating add-on states | |
1480388393484 addons.xpi-utils DEBUG Writing add-ons list | |
1480388393485 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388393485 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388393485 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388393485 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388393486 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388393486 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480388393486 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388393487 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480388393490 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480388393490 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480388393490 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480388393490 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480388393491 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480388393491 addons.manager DEBUG Starting provider: GMPProvider | |
1480388393498 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480388393498 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480388393498 addons.manager DEBUG Starting provider: PluginProvider | |
1480388393499 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480388393499 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480388393499 addons.manager DEBUG Completed startup sequence | |
1480388393753 Marionette INFO Listening on port 60557 | |
1480388394106 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480388394106 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480388394107 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480388394124 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480388394125 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480388394126 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480388394130 DeferredSave.extensions.json DEBUG Starting write | |
1480388394281 DeferredSave.extensions.json DEBUG Write succeeded | |
1480388394282 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:3552): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3552): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3552): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3552): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3472): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3472): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3472): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3472): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3472): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7faf36b6f7e0' of type 'MaiAtkType13b' | |
(firefox:3472): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3472): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7faf2d694510' of type 'MaiAtkType13b' | |
(firefox:3472): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7faf36a8db50' of type 'MaiAtkType13b' | |
[Child 3552] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 3552] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 3552] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480388429785 geckodriver INFO Listening on 127.0.0.1:58815 | |
1480388430785 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.Yz7lIy9S11FF | |
1480388430787 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480388430789 geckodriver::marionette INFO Connecting to Marionette on localhost:49376 | |
(firefox:4197): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4197): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4197): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4197): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388431289 addons.manager DEBUG Application has been upgraded | |
1480388431311 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480388431313 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480388431317 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480388431320 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480388431321 addons.manager DEBUG Starting provider: XPIProvider | |
1480388431321 addons.xpi DEBUG startup | |
1480388431322 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480388431323 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388431323 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388431324 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388431324 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388431325 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480388431325 addons.xpi DEBUG checkForChanges | |
1480388431326 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480388431327 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388431328 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388431328 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388431329 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388431329 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388431330 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388431330 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388431330 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388431331 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480388431332 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388431332 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480388431340 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.Yz7lIy9S11FF/extensions.json | |
1480388431342 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480388431351 DeferredSave.extensions.json DEBUG Save changes | |
1480388431352 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388431355 DeferredSave.extensions.json DEBUG Starting timer | |
1480388431356 DeferredSave.extensions.json DEBUG Save changes | |
1480388431356 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388431361 DeferredSave.extensions.json DEBUG Save changes | |
1480388431362 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388431368 DeferredSave.extensions.json DEBUG Save changes | |
1480388431369 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480388431374 DeferredSave.extensions.json DEBUG Save changes | |
1480388431375 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388431384 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388431391 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388431391 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388431391 DeferredSave.extensions.json DEBUG Save changes | |
1480388431393 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388431394 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388431405 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388431405 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388431406 DeferredSave.extensions.json DEBUG Save changes | |
1480388431406 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388431407 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388431410 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480388431411 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388431411 DeferredSave.extensions.json DEBUG Save changes | |
1480388431412 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388431412 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388431415 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480388431415 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388431416 DeferredSave.extensions.json DEBUG Save changes | |
1480388431416 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480388431416 DeferredSave.extensions.json DEBUG Save changes | |
1480388431417 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{2d188b87-eef6-443a-ad92-7258173b17d0}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480388431417 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388431417 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{338e24f9-6343-4102-8d98-eeb137f5c368}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388431417 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388431418 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{39ab75f8-f443-4746-8d4c-1e5d0f76cce6}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388431418 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388431418 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a7700bfd-e113-4307-85ca-91230e638fb1}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388431419 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388431419 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{736e951e-2599-4017-bd0d-f299b833b411}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480388431419 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388431421 DeferredSave.extensions.json DEBUG Save changes | |
1480388431421 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480388431421 addons.xpi-utils DEBUG Updating add-on states | |
1480388431421 addons.xpi-utils DEBUG Writing add-ons list | |
1480388431423 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388431423 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388431423 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388431423 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388431424 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388431424 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480388431425 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388431425 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480388431428 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480388431429 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480388431429 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480388431429 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480388431429 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480388431430 addons.manager DEBUG Starting provider: GMPProvider | |
1480388431437 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480388431438 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480388431438 addons.manager DEBUG Starting provider: PluginProvider | |
1480388431438 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480388431438 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480388431439 addons.manager DEBUG Completed startup sequence | |
1480388431744 Marionette ERROR Error on starting server: [Exception... "Component returned failure code: 0x804b0036 (NS_ERROR_SOCKET_ADDRESS_IN_USE) [nsIServerSocket.initSpecialConnection]" nsresult: "0x804b0036 (NS_ERROR_SOCKET_ADDRESS_IN_USE)" location: "JS frame :: chrome://marionette/content/server.js :: MarionetteServer.prototype.start :: line 85" data: no] | |
[Exception... "Component returned failure code: 0x804b0036 (NS_ERROR_SOCKET_ADDRESS_IN_USE) [nsIServerSocket.initSpecialConnection]" nsresult: "0x804b0036 (NS_ERROR_SOCKET_ADDRESS_IN_USE)" location: "JS frame :: chrome://marionette/content/server.js :: MarionetteServer.prototype.start :: line 85" data: no] | |
MarionetteServer.prototype.start@chrome://marionette/content/server.js:85:19 | |
MarionetteComponent.prototype.init@resource://gre/components/marionettecomponent.js:218:5 | |
MarionetteComponent.prototype.observe@resource://gre/components/marionettecomponent.js:142:7 | |
1480388432125 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480388432125 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480388432126 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480388432141 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480388432141 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480388432143 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480388432147 DeferredSave.extensions.json DEBUG Starting write | |
1480388432286 DeferredSave.extensions.json DEBUG Write succeeded | |
1480388432286 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4273): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4273): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4273): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4273): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388493002 addons.productaddons INFO sending request to: https://aus5.mozilla.org/update/3/GMP/50.0/20161104212021/Linux_x86_64-gcc3/en-US/release/Linux%203.10.0-327.el7.x86_64%20(GTK%203.14.13%2Clibpulse%20not-available)/default/default/update.xml | |
1480388493261 addons.productaddons WARN Failed downloading XML, status: 0, reason: error | |
1480388898948 geckodriver INFO Listening on 127.0.0.1:41702 | |
1480388899950 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.9jT5JKFH7Vz5 | |
1480388899973 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480388899996 geckodriver::marionette INFO Connecting to Marionette on localhost:54152 | |
(firefox:961): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:961): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:961): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:961): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388900415 addons.manager DEBUG Application has been upgraded | |
1480388900437 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480388900440 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480388900444 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480388900446 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480388900447 addons.manager DEBUG Starting provider: XPIProvider | |
1480388900448 addons.xpi DEBUG startup | |
1480388900449 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480388900450 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388900450 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388900450 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388900451 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388900452 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480388900452 addons.xpi DEBUG checkForChanges | |
1480388900453 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480388900454 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388900455 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388900456 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388900457 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388900457 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388900458 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388900458 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388900458 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388900459 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480388900459 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388900460 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480388900469 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.9jT5JKFH7Vz5/extensions.json | |
1480388900470 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480388900482 DeferredSave.extensions.json DEBUG Save changes | |
1480388900482 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388900485 DeferredSave.extensions.json DEBUG Starting timer | |
1480388900486 DeferredSave.extensions.json DEBUG Save changes | |
1480388900487 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388900493 DeferredSave.extensions.json DEBUG Save changes | |
1480388900493 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388900500 DeferredSave.extensions.json DEBUG Save changes | |
1480388900501 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480388900504 DeferredSave.extensions.json DEBUG Save changes | |
1480388900505 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388900512 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388900518 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388900518 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388900518 DeferredSave.extensions.json DEBUG Save changes | |
1480388900519 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388900520 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388900530 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388900530 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388900530 DeferredSave.extensions.json DEBUG Save changes | |
1480388900530 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388900531 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388900534 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480388900535 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388900536 DeferredSave.extensions.json DEBUG Save changes | |
1480388900536 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388900536 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388900540 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480388900540 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388900540 DeferredSave.extensions.json DEBUG Save changes | |
1480388900540 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480388900541 DeferredSave.extensions.json DEBUG Save changes | |
1480388900541 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{6c096b30-6327-4f69-a759-bdd4dcf356ab}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480388900541 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388900541 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c7bfc216-f975-4a91-ba3d-5287f7654e19}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388900542 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388900542 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{8ea4746e-a808-4386-9190-4ece2ee3524c}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388900542 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388900542 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ed1a0df2-7f42-46c9-bc0c-3b2b49c59516}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388900543 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388900543 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{b1e62836-63c9-4d6b-8ef7-fa2d5e7e1ea9}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480388900543 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388900544 DeferredSave.extensions.json DEBUG Save changes | |
1480388900544 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480388900544 addons.xpi-utils DEBUG Updating add-on states | |
1480388900545 addons.xpi-utils DEBUG Writing add-ons list | |
1480388900546 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388900546 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388900547 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388900547 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388900547 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388900548 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480388900548 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388900548 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480388900552 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480388900552 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480388900552 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480388900552 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480388900552 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480388900553 addons.manager DEBUG Starting provider: GMPProvider | |
1480388900561 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480388900561 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480388900561 addons.manager DEBUG Starting provider: PluginProvider | |
1480388900561 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480388900561 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480388900562 addons.manager DEBUG Completed startup sequence | |
1480388900772 Marionette INFO Listening on port 54152 | |
1480388901002 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480388901002 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480388901003 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480388901020 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480388901020 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480388901021 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480388901024 DeferredSave.extensions.json DEBUG Starting write | |
1480388901167 DeferredSave.extensions.json DEBUG Write succeeded | |
1480388901168 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1088): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1088): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1088): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1088): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:961): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:961): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:961): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:961): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:961): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe846219240' of type 'MaiAtkType13b' | |
(firefox:961): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:961): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe84191b5b0' of type 'MaiAtkType13b' | |
(firefox:961): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fe84d97d740' of type 'MaiAtkType13b' | |
[Child 1088] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1088] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1088] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480388909334 geckodriver INFO Listening on 127.0.0.1:54133 | |
1480388910332 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.tOi6jNqroHQu | |
1480388910334 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480388910336 geckodriver::marionette INFO Connecting to Marionette on localhost:36251 | |
(firefox:1358): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1358): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1358): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1358): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388910531 addons.manager DEBUG Application has been upgraded | |
1480388910550 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480388910552 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480388910557 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480388910559 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480388910560 addons.manager DEBUG Starting provider: XPIProvider | |
1480388910560 addons.xpi DEBUG startup | |
1480388910561 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480388910561 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388910562 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388910562 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388910563 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388910563 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480388910564 addons.xpi DEBUG checkForChanges | |
1480388910564 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480388910565 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388910566 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388910567 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388910567 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388910568 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388910568 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388910569 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388910569 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388910569 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480388910570 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388910570 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480388910578 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.tOi6jNqroHQu/extensions.json | |
1480388910579 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480388910589 DeferredSave.extensions.json DEBUG Save changes | |
1480388910589 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388910592 DeferredSave.extensions.json DEBUG Starting timer | |
1480388910593 DeferredSave.extensions.json DEBUG Save changes | |
1480388910593 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388910599 DeferredSave.extensions.json DEBUG Save changes | |
1480388910599 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388910605 DeferredSave.extensions.json DEBUG Save changes | |
1480388910606 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480388910610 DeferredSave.extensions.json DEBUG Save changes | |
1480388910610 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388910617 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388910622 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388910622 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388910622 DeferredSave.extensions.json DEBUG Save changes | |
1480388910623 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388910624 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388910633 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388910633 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388910634 DeferredSave.extensions.json DEBUG Save changes | |
1480388910634 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388910635 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388910638 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480388910639 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388910639 DeferredSave.extensions.json DEBUG Save changes | |
1480388910639 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388910640 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388910643 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480388910643 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388910644 DeferredSave.extensions.json DEBUG Save changes | |
1480388910644 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480388910644 DeferredSave.extensions.json DEBUG Save changes | |
1480388910645 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{144a17ac-7888-436b-9d80-751bbedf8c3e}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480388910645 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388910645 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{eb3da69c-faff-49d0-9ea9-2d890baa2f59}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388910645 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388910646 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{661e8c95-b7c3-4776-a47e-9cbf83817af8}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388910646 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388910646 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f87b5371-d8aa-40ef-acf9-b11b8d8ee7fd}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388910646 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388910647 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{c28a02c4-afe8-480e-887d-7f7da5335ec7}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480388910647 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388910648 DeferredSave.extensions.json DEBUG Save changes | |
1480388910648 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480388910648 addons.xpi-utils DEBUG Updating add-on states | |
1480388910649 addons.xpi-utils DEBUG Writing add-ons list | |
1480388910650 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388910650 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388910650 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388910651 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388910651 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388910651 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480388910652 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388910652 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480388910655 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480388910656 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480388910656 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480388910656 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480388910656 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480388910657 addons.manager DEBUG Starting provider: GMPProvider | |
1480388910664 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480388910664 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480388910665 addons.manager DEBUG Starting provider: PluginProvider | |
1480388910665 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480388910665 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480388910665 addons.manager DEBUG Completed startup sequence | |
1480388910844 Marionette INFO Listening on port 36251 | |
1480388911046 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480388911046 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480388911047 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480388911062 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480388911062 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480388911063 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480388911067 DeferredSave.extensions.json DEBUG Starting write | |
1480388911206 DeferredSave.extensions.json DEBUG Write succeeded | |
1480388911207 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1433): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1433): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1433): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1433): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1358): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1358): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1358): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1358): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1358): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f33895d6740' of type 'MaiAtkType13b' | |
(firefox:1358): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1358): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f3389fc1330' of type 'MaiAtkType13b' | |
(firefox:1358): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f338a0a5f60' of type 'MaiAtkType13b' | |
(firefox:1358): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f3387af25b0' of type 'MaiAtkType13b' | |
[Child 1433] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1433] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1433] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480388920790 geckodriver INFO Listening on 127.0.0.1:47632 | |
1480388921789 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.CsIPHhDcZ0Wg | |
1480388921792 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480388921794 geckodriver::marionette INFO Connecting to Marionette on localhost:46178 | |
(firefox:1722): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388922087 addons.manager DEBUG Application has been upgraded | |
1480388922107 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480388922110 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480388922114 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480388922116 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480388922117 addons.manager DEBUG Starting provider: XPIProvider | |
1480388922117 addons.xpi DEBUG startup | |
1480388922118 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480388922119 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388922119 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388922120 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388922120 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388922121 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480388922121 addons.xpi DEBUG checkForChanges | |
1480388922122 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480388922123 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388922124 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388922125 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388922125 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388922126 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388922126 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388922127 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388922127 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388922127 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480388922128 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388922129 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480388922137 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.CsIPHhDcZ0Wg/extensions.json | |
1480388922139 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480388922149 DeferredSave.extensions.json DEBUG Save changes | |
1480388922149 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388922152 DeferredSave.extensions.json DEBUG Starting timer | |
1480388922153 DeferredSave.extensions.json DEBUG Save changes | |
1480388922153 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388922159 DeferredSave.extensions.json DEBUG Save changes | |
1480388922159 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388922166 DeferredSave.extensions.json DEBUG Save changes | |
1480388922166 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480388922170 DeferredSave.extensions.json DEBUG Save changes | |
1480388922171 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388922178 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388922183 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388922183 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388922184 DeferredSave.extensions.json DEBUG Save changes | |
1480388922185 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388922185 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388922195 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388922195 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388922196 DeferredSave.extensions.json DEBUG Save changes | |
1480388922196 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388922197 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388922199 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480388922201 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388922201 DeferredSave.extensions.json DEBUG Save changes | |
1480388922201 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388922202 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388922205 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480388922205 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388922206 DeferredSave.extensions.json DEBUG Save changes | |
1480388922206 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480388922206 DeferredSave.extensions.json DEBUG Save changes | |
1480388922206 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{74da0865-9769-454b-b19d-e88969e6b1c2}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480388922207 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388922207 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{334e5d5f-287f-4062-824c-98cee530ffa4}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388922207 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388922207 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e7e6d42f-d163-4840-a8bd-4cd1eca0cbc1}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388922208 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388922208 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{dead3d65-7040-4cf8-af67-608d974355c5}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388922208 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388922208 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{e2a784d4-a5f1-4b03-9461-84a334afb5d1}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480388922208 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388922210 DeferredSave.extensions.json DEBUG Save changes | |
1480388922210 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480388922210 addons.xpi-utils DEBUG Updating add-on states | |
1480388922210 addons.xpi-utils DEBUG Writing add-ons list | |
1480388922211 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388922212 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388922212 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388922212 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388922212 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388922213 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480388922213 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388922214 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480388922217 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480388922217 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480388922217 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480388922217 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480388922217 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480388922218 addons.manager DEBUG Starting provider: GMPProvider | |
1480388922226 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480388922226 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480388922226 addons.manager DEBUG Starting provider: PluginProvider | |
1480388922226 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480388922226 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480388922227 addons.manager DEBUG Completed startup sequence | |
1480388922530 Marionette INFO Listening on port 46178 | |
1480388923110 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480388923111 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480388923111 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480388923128 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480388923128 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480388923129 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480388923133 DeferredSave.extensions.json DEBUG Starting write | |
1480388923273 DeferredSave.extensions.json DEBUG Write succeeded | |
1480388923275 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1806): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1806): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1806): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1806): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1722): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1722): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f8ea8f86e70' of type 'MaiAtkType13b' | |
(firefox:1722): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1722): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f8eafad6ce0' of type 'MaiAtkType13b' | |
(firefox:1722): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f8eb5bcc380' of type 'MaiAtkType13b' | |
[Child 1806] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1806] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1806] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480388946236 geckodriver INFO Listening on 127.0.0.1:37412 | |
1480388947238 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.9wAOy3v6wG6m | |
1480388947241 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480388947244 geckodriver::marionette INFO Connecting to Marionette on localhost:42520 | |
(firefox:2123): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2123): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2123): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2123): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388947454 addons.manager DEBUG Application has been upgraded | |
1480388947473 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480388947476 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480388947481 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480388947483 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480388947484 addons.manager DEBUG Starting provider: XPIProvider | |
1480388947484 addons.xpi DEBUG startup | |
1480388947485 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480388947486 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388947486 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388947486 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388947487 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388947487 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480388947488 addons.xpi DEBUG checkForChanges | |
1480388947488 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480388947489 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388947490 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388947491 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388947491 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388947492 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388947492 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388947493 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388947493 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388947493 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480388947494 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388947494 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480388947503 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.9wAOy3v6wG6m/extensions.json | |
1480388947504 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480388947513 DeferredSave.extensions.json DEBUG Save changes | |
1480388947513 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388947516 DeferredSave.extensions.json DEBUG Starting timer | |
1480388947517 DeferredSave.extensions.json DEBUG Save changes | |
1480388947517 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388947523 DeferredSave.extensions.json DEBUG Save changes | |
1480388947523 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388947529 DeferredSave.extensions.json DEBUG Save changes | |
1480388947530 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480388947534 DeferredSave.extensions.json DEBUG Save changes | |
1480388947534 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388947541 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388947546 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388947546 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388947546 DeferredSave.extensions.json DEBUG Save changes | |
1480388947547 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388947548 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388947557 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388947557 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388947558 DeferredSave.extensions.json DEBUG Save changes | |
1480388947558 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388947559 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388947561 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480388947563 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388947563 DeferredSave.extensions.json DEBUG Save changes | |
1480388947563 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388947564 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388947567 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480388947567 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388947567 DeferredSave.extensions.json DEBUG Save changes | |
1480388947568 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480388947568 DeferredSave.extensions.json DEBUG Save changes | |
1480388947568 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e48f6e98-6fa7-4415-a9b7-ad1355754fce}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480388947568 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388947569 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{7cc3e398-a4f4-4be4-9dee-e8fd101aebdb}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388947569 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388947569 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c37aba74-6df1-460a-805f-69d865b21966}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388947569 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388947570 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{23b6bef9-6db1-4c72-9a43-2cf591b39cd3}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388947570 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388947570 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{c0153929-a1a5-4798-8b0d-e7c719043d64}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480388947570 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388947571 DeferredSave.extensions.json DEBUG Save changes | |
1480388947572 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480388947572 addons.xpi-utils DEBUG Updating add-on states | |
1480388947572 addons.xpi-utils DEBUG Writing add-ons list | |
1480388947573 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388947574 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388947574 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388947574 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388947574 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388947575 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480388947575 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388947575 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480388947579 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480388947579 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480388947579 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480388947579 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480388947579 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480388947580 addons.manager DEBUG Starting provider: GMPProvider | |
1480388947588 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480388947588 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480388947588 addons.manager DEBUG Starting provider: PluginProvider | |
1480388947588 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480388947588 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480388947589 addons.manager DEBUG Completed startup sequence | |
1480388947851 Marionette INFO Listening on port 42520 | |
1480388948232 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480388948232 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480388948232 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480388948247 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480388948248 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480388948249 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480388948253 DeferredSave.extensions.json DEBUG Starting write | |
1480388948393 DeferredSave.extensions.json DEBUG Write succeeded | |
1480388948395 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2198): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2198): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2198): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2198): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2123): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2123): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2123): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2123): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2123): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fc31a68f470' of type 'MaiAtkType13b' | |
(firefox:2123): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fc31a7adb50' of type 'MaiAtkType139' | |
(firefox:2123): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2123): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fc317f9c600' of type 'MaiAtkType139' | |
(firefox:2123): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fc31c6817e0' of type 'MaiAtkType13b' | |
(firefox:2123): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fc31d985330' of type 'MaiAtkType139' | |
(firefox:2123): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fc31a658d80' of type 'MaiAtkType139' | |
(firefox:2123): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fc317fe6920' of type 'MaiAtkType13b' | |
(firefox:2123): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fc31f052f60' of type 'MaiAtkType139' | |
(firefox:2123): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7fc320f929c0' of type 'MaiAtkType13b' | |
(firefox:2123): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7fc3225c4c40' of type 'MaiAtkType139' | |
[Child 2198] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2198] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480388996469 geckodriver INFO Listening on 127.0.0.1:47206 | |
1480388997470 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.Vl51QgOUnoUX | |
1480388997472 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480388997474 geckodriver::marionette INFO Connecting to Marionette on localhost:39939 | |
(firefox:2809): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2809): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2809): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2809): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480388997682 addons.manager DEBUG Application has been upgraded | |
1480388997700 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480388997702 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480388997706 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480388997708 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480388997709 addons.manager DEBUG Starting provider: XPIProvider | |
1480388997710 addons.xpi DEBUG startup | |
1480388997710 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480388997711 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388997711 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388997712 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388997712 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480388997713 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480388997713 addons.xpi DEBUG checkForChanges | |
1480388997714 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480388997715 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388997716 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388997716 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388997717 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388997717 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388997718 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388997718 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480388997718 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388997719 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480388997719 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388997720 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480388997728 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.Vl51QgOUnoUX/extensions.json | |
1480388997729 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480388997738 DeferredSave.extensions.json DEBUG Save changes | |
1480388997738 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388997740 DeferredSave.extensions.json DEBUG Starting timer | |
1480388997742 DeferredSave.extensions.json DEBUG Save changes | |
1480388997742 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388997747 DeferredSave.extensions.json DEBUG Save changes | |
1480388997747 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480388997753 DeferredSave.extensions.json DEBUG Save changes | |
1480388997754 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480388997758 DeferredSave.extensions.json DEBUG Save changes | |
1480388997758 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388997765 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388997770 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388997770 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388997770 DeferredSave.extensions.json DEBUG Save changes | |
1480388997771 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388997771 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388997781 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480388997781 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388997781 DeferredSave.extensions.json DEBUG Save changes | |
1480388997782 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388997782 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388997785 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480388997787 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388997787 DeferredSave.extensions.json DEBUG Save changes | |
1480388997787 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480388997788 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480388997792 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480388997792 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480388997793 DeferredSave.extensions.json DEBUG Save changes | |
1480388997793 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480388997793 DeferredSave.extensions.json DEBUG Save changes | |
1480388997793 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{9f5ba1c5-29d8-40b7-876f-1f1067a2c740}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480388997793 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388997794 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{408591e2-a169-4da0-9633-afad7e42b237}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388997794 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388997794 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3d1199e6-5383-4726-bddf-2aee84783c58}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388997794 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388997795 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4ac9cae1-e893-4dd9-b986-26329e741a80}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480388997795 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480388997795 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{19785c29-de59-4afd-bcaa-c129fab11630}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480388997795 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480388997796 DeferredSave.extensions.json DEBUG Save changes | |
1480388997797 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480388997797 addons.xpi-utils DEBUG Updating add-on states | |
1480388997797 addons.xpi-utils DEBUG Writing add-ons list | |
1480388997798 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388997798 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388997799 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388997799 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480388997799 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388997800 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480388997800 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480388997800 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480388997803 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480388997804 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480388997804 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480388997804 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480388997804 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480388997804 addons.manager DEBUG Starting provider: GMPProvider | |
1480388997812 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480388997812 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480388997812 addons.manager DEBUG Starting provider: PluginProvider | |
1480388997812 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480388997813 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480388997813 addons.manager DEBUG Completed startup sequence | |
1480388998043 Marionette INFO Listening on port 39939 | |
1480388998390 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480388998390 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480388998391 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480388998407 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480388998407 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480388998409 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480388998414 DeferredSave.extensions.json DEBUG Starting write | |
1480388998523 DeferredSave.extensions.json DEBUG Write succeeded | |
1480388998524 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2882): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2882): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2882): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2882): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2809): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2809): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2809): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2809): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2809): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f56250e4c40' of type 'MaiAtkType13b' | |
(firefox:2809): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2809): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f562482df10' of type 'MaiAtkType13b' | |
(firefox:2809): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f56250e4e70' of type 'MaiAtkType13b' | |
(firefox:2809): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f56281091f0' of type 'MaiAtkType139' | |
(firefox:2809): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f56251f84c0' of type 'MaiAtkType13b' | |
(firefox:2809): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f56251f8830' of type 'MaiAtkType139' | |
[Child 2882] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2882] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480389032594 geckodriver INFO Listening on 127.0.0.1:44376 | |
1480389033763 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.clF6Mq6sN2ZX | |
1480389033765 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480389033951 geckodriver::marionette INFO Connecting to Marionette on localhost:49019 | |
(firefox:3573): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3573): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3573): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3573): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480389034550 addons.manager DEBUG Application has been upgraded | |
1480389034574 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480389034577 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480389034583 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480389034587 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480389034588 addons.manager DEBUG Starting provider: XPIProvider | |
1480389034588 addons.xpi DEBUG startup | |
1480389034589 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480389034591 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389034591 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389034592 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389034592 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389034593 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480389034594 addons.xpi DEBUG checkForChanges | |
1480389034595 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480389034596 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389034598 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389034599 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389034599 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389034599 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389034600 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389034601 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389034601 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389034602 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480389034603 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389034603 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480389034616 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.clF6Mq6sN2ZX/extensions.json | |
1480389034618 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480389034631 DeferredSave.extensions.json DEBUG Save changes | |
1480389034632 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389034636 DeferredSave.extensions.json DEBUG Starting timer | |
1480389034638 DeferredSave.extensions.json DEBUG Save changes | |
1480389034638 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389034645 DeferredSave.extensions.json DEBUG Save changes | |
1480389034645 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389034653 DeferredSave.extensions.json DEBUG Save changes | |
1480389034654 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480389034660 DeferredSave.extensions.json DEBUG Save changes | |
1480389034660 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389034670 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389034677 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389034677 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389034678 DeferredSave.extensions.json DEBUG Save changes | |
1480389034679 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389034680 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389034694 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389034694 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389034694 DeferredSave.extensions.json DEBUG Save changes | |
1480389034695 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389034696 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389034700 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480389034702 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389034702 DeferredSave.extensions.json DEBUG Save changes | |
1480389034703 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389034704 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389034709 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480389034709 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389034709 DeferredSave.extensions.json DEBUG Save changes | |
1480389034710 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480389034710 DeferredSave.extensions.json DEBUG Save changes | |
1480389034710 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{038e05e5-aad2-43c4-b5a5-2b840b5031e9}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480389034711 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389034711 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{01f13fe3-fd94-4a4a-b571-d79442ad41fe}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389034711 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389034712 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d17fd2a4-8828-42aa-a57a-c8f1efce93a5}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389034712 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389034713 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{975f5e5d-9158-4e17-a1e3-3665932f1dfa}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389034713 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389034713 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{ac01eab8-15e7-497c-8a33-fdca451aa3a7}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480389034713 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389034715 DeferredSave.extensions.json DEBUG Save changes | |
1480389034716 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480389034716 addons.xpi-utils DEBUG Updating add-on states | |
1480389034716 addons.xpi-utils DEBUG Writing add-ons list | |
1480389034718 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389034718 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389034718 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389034719 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389034719 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389034720 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480389034720 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389034721 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480389034726 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480389034726 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480389034726 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480389034727 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480389034727 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480389034728 addons.manager DEBUG Starting provider: GMPProvider | |
1480389034738 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480389034739 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480389034739 addons.manager DEBUG Starting provider: PluginProvider | |
1480389034739 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480389034739 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480389034740 addons.manager DEBUG Completed startup sequence | |
1480389035008 Marionette INFO Listening on port 49019 | |
1480389035395 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480389035395 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480389035396 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480389035413 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480389035414 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480389035415 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480389035419 DeferredSave.extensions.json DEBUG Starting write | |
1480389035556 DeferredSave.extensions.json DEBUG Write succeeded | |
1480389035557 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:3659): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3659): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3659): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3659): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3573): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3573): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3573): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3573): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3573): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7ff5e8c176a0' of type 'MaiAtkType13b' | |
(firefox:3573): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3573): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7ff5e796e740' of type 'MaiAtkType13b' | |
(firefox:3573): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7ff5e8924150' of type 'MaiAtkType13b' | |
[Child 3659] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 3659] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480389070649 geckodriver INFO Listening on 127.0.0.1:59848 | |
1480389070655 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.mU9H8WdMog5n | |
1480389070657 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480389070659 geckodriver::marionette INFO Connecting to Marionette on localhost:59959 | |
(firefox:4202): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4202): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4202): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4202): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480389070865 addons.manager DEBUG Application has been upgraded | |
1480389070892 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480389070894 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480389070899 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480389070901 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480389070902 addons.manager DEBUG Starting provider: XPIProvider | |
1480389070902 addons.xpi DEBUG startup | |
1480389070903 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480389070904 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389070904 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389070905 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389070905 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389070906 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480389070906 addons.xpi DEBUG checkForChanges | |
1480389070907 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480389070908 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389070909 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389070909 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389070910 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389070910 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389070911 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389070911 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389070911 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389070912 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480389070912 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389070913 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480389070921 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.mU9H8WdMog5n/extensions.json | |
1480389070922 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480389070931 DeferredSave.extensions.json DEBUG Save changes | |
1480389070931 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389070934 DeferredSave.extensions.json DEBUG Starting timer | |
1480389070935 DeferredSave.extensions.json DEBUG Save changes | |
1480389070935 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389070940 DeferredSave.extensions.json DEBUG Save changes | |
1480389070941 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389070947 DeferredSave.extensions.json DEBUG Save changes | |
1480389070948 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480389070952 DeferredSave.extensions.json DEBUG Save changes | |
1480389070952 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389070959 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389070963 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389070964 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389070964 DeferredSave.extensions.json DEBUG Save changes | |
1480389070965 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389070965 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389070975 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389070975 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389070975 DeferredSave.extensions.json DEBUG Save changes | |
1480389070975 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389070976 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389070979 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480389070980 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389070980 DeferredSave.extensions.json DEBUG Save changes | |
1480389070980 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389070981 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389070984 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480389070984 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389070984 DeferredSave.extensions.json DEBUG Save changes | |
1480389070985 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480389070985 DeferredSave.extensions.json DEBUG Save changes | |
1480389070985 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{75fa5ca2-01ed-405f-8372-34cb80feff80}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480389070985 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389070986 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{466b739a-225c-4b9d-9946-545f98be6434}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389070986 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389070986 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f4f20184-088f-4594-b7d2-408616fdd69c}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389070986 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389070987 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{15937f0c-5600-4ced-b81b-d735933bf9de}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389070987 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389070987 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{380c2b9f-8119-48af-9d5a-a9dd1eaeb20b}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480389070987 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389070988 DeferredSave.extensions.json DEBUG Save changes | |
1480389070988 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480389070989 addons.xpi-utils DEBUG Updating add-on states | |
1480389070989 addons.xpi-utils DEBUG Writing add-ons list | |
1480389070990 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389070990 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389070990 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389070991 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389070991 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389070991 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480389070992 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389070992 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480389070995 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480389070995 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480389070995 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480389070996 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480389070996 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480389070996 addons.manager DEBUG Starting provider: GMPProvider | |
1480389071004 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480389071005 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480389071005 addons.manager DEBUG Starting provider: PluginProvider | |
1480389071005 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480389071005 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480389071005 addons.manager DEBUG Completed startup sequence | |
1480389071261 Marionette INFO Listening on port 59959 | |
1480389072756 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480389072756 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480389072756 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480389072772 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480389072772 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480389072773 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480389072781 DeferredSave.extensions.json DEBUG Starting write | |
1480389072913 DeferredSave.extensions.json DEBUG Write succeeded | |
1480389072914 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4290): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4290): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4290): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4290): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4202): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4202): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4202): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4202): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4202): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7dc1743880' of type 'MaiAtkType13b' | |
(firefox:4202): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f7dc1743ce0' of type 'MaiAtkType139' | |
(firefox:4202): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f7dc1743c40' of type 'MaiAtkType13b' | |
(firefox:4202): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f7dc1743c40' of type 'MaiAtkType13b' | |
(firefox:4202): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f7dc32cb380' of type 'MaiAtkType139' | |
[Child 4290] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 4290] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4290] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480389094785 geckodriver INFO Listening on 127.0.0.1:38989 | |
1480389095785 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.tPjyOMGGKmny | |
1480389095787 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480389095789 geckodriver::marionette INFO Connecting to Marionette on localhost:49696 | |
(firefox:4718): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4718): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4718): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4718): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480389096022 addons.manager DEBUG Application has been upgraded | |
1480389096039 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480389096041 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480389096046 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480389096048 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480389096049 addons.manager DEBUG Starting provider: XPIProvider | |
1480389096049 addons.xpi DEBUG startup | |
1480389096050 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480389096051 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389096051 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389096051 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389096052 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389096052 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480389096053 addons.xpi DEBUG checkForChanges | |
1480389096053 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480389096054 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389096055 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389096056 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389096057 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389096057 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389096057 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389096058 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389096058 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389096059 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480389096059 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389096059 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480389096067 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.tPjyOMGGKmny/extensions.json | |
1480389096068 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480389096078 DeferredSave.extensions.json DEBUG Save changes | |
1480389096078 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389096081 DeferredSave.extensions.json DEBUG Starting timer | |
1480389096082 DeferredSave.extensions.json DEBUG Save changes | |
1480389096082 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389096088 DeferredSave.extensions.json DEBUG Save changes | |
1480389096088 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389096094 DeferredSave.extensions.json DEBUG Save changes | |
1480389096095 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480389096098 DeferredSave.extensions.json DEBUG Save changes | |
1480389096099 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389096105 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389096110 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389096110 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389096111 DeferredSave.extensions.json DEBUG Save changes | |
1480389096112 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389096112 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389096122 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389096122 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389096122 DeferredSave.extensions.json DEBUG Save changes | |
1480389096122 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389096123 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389096126 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480389096127 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389096128 DeferredSave.extensions.json DEBUG Save changes | |
1480389096128 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389096128 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389096131 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480389096132 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389096132 DeferredSave.extensions.json DEBUG Save changes | |
1480389096132 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480389096132 DeferredSave.extensions.json DEBUG Save changes | |
1480389096133 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ff22dc74-6783-42ae-90c6-fd40e6b8672f}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480389096133 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389096133 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ecf3df33-c535-4785-94c6-c735229f64cc}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389096133 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389096134 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e4e0cd9a-cdeb-4a3b-9ba6-0b6baae44bf1}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389096134 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389096134 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{2004fadb-75cc-40d8-8eaf-527c40df6670}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389096134 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389096135 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{6000208c-7481-49e7-8a38-887aa50c93e1}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480389096135 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389096136 DeferredSave.extensions.json DEBUG Save changes | |
1480389096136 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480389096136 addons.xpi-utils DEBUG Updating add-on states | |
1480389096137 addons.xpi-utils DEBUG Writing add-ons list | |
1480389096138 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389096138 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389096138 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389096138 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389096139 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389096139 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480389096140 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389096140 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480389096143 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480389096144 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480389096144 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480389096144 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480389096144 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480389096144 addons.manager DEBUG Starting provider: GMPProvider | |
1480389096152 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480389096152 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480389096152 addons.manager DEBUG Starting provider: PluginProvider | |
1480389096152 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480389096152 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480389096153 addons.manager DEBUG Completed startup sequence | |
1480389096421 Marionette INFO Listening on port 49696 | |
1480389096824 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480389096824 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480389096825 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480389096842 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480389096843 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480389096844 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480389096849 DeferredSave.extensions.json DEBUG Starting write | |
1480389096994 DeferredSave.extensions.json DEBUG Write succeeded | |
1480389096995 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4795): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4795): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4795): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4795): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4718): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4718): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4718): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4718): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 4795] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4795] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480389099533 geckodriver INFO Listening on 127.0.0.1:38655 | |
1480389100534 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.u7Ycj1gSOfxC | |
1480389100536 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480389100538 geckodriver::marionette INFO Connecting to Marionette on localhost:35681 | |
(firefox:4965): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4965): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4965): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4965): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480389100796 addons.manager DEBUG Application has been upgraded | |
1480389100815 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480389100817 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480389100822 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480389100824 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480389100825 addons.manager DEBUG Starting provider: XPIProvider | |
1480389100825 addons.xpi DEBUG startup | |
1480389100826 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480389100827 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389100827 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389100827 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389100828 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389100828 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480389100829 addons.xpi DEBUG checkForChanges | |
1480389100830 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480389100831 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389100832 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389100833 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389100833 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389100833 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389100834 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389100835 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389100835 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389100835 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480389100836 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389100836 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480389100845 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.u7Ycj1gSOfxC/extensions.json | |
1480389100846 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480389100856 DeferredSave.extensions.json DEBUG Save changes | |
1480389100857 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389100860 DeferredSave.extensions.json DEBUG Starting timer | |
1480389100861 DeferredSave.extensions.json DEBUG Save changes | |
1480389100861 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389100867 DeferredSave.extensions.json DEBUG Save changes | |
1480389100867 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389100873 DeferredSave.extensions.json DEBUG Save changes | |
1480389100874 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480389100878 DeferredSave.extensions.json DEBUG Save changes | |
1480389100878 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389100886 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389100891 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389100891 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389100891 DeferredSave.extensions.json DEBUG Save changes | |
1480389100892 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389100893 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389100904 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389100904 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389100904 DeferredSave.extensions.json DEBUG Save changes | |
1480389100904 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389100905 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389100908 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480389100909 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389100910 DeferredSave.extensions.json DEBUG Save changes | |
1480389100910 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389100911 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389100914 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480389100914 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389100914 DeferredSave.extensions.json DEBUG Save changes | |
1480389100914 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480389100914 DeferredSave.extensions.json DEBUG Save changes | |
1480389100915 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{8ec48a43-b1e3-4db5-a672-407130dec03a}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480389100915 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389100915 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{77d39b92-1451-45fa-b3ca-620d4db982f2}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389100915 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389100916 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f3fbbebf-cd83-46da-961b-63504791a276}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389100916 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389100916 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1f7ae3ac-5a72-47a0-8ad6-e04d0e747b9c}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389100916 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389100917 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{6cc9e5c3-3358-4f23-9acf-52840bcc74ca}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480389100917 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389100918 DeferredSave.extensions.json DEBUG Save changes | |
1480389100918 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480389100918 addons.xpi-utils DEBUG Updating add-on states | |
1480389100919 addons.xpi-utils DEBUG Writing add-ons list | |
1480389100920 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389100920 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389100920 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389100921 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389100921 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389100921 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480389100922 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389100922 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480389100925 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480389100926 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480389100926 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480389100926 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480389100926 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480389100926 addons.manager DEBUG Starting provider: GMPProvider | |
1480389100934 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480389100934 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480389100934 addons.manager DEBUG Starting provider: PluginProvider | |
1480389100935 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480389100935 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480389100935 addons.manager DEBUG Completed startup sequence | |
1480389101169 Marionette INFO Listening on port 35681 | |
1480389101538 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480389101538 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480389101539 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480389101557 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480389101557 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480389101559 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480389101565 DeferredSave.extensions.json DEBUG Starting write | |
1480389101731 DeferredSave.extensions.json DEBUG Write succeeded | |
1480389101731 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5043): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5043): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5043): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5043): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4965): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4965): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4965): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4965): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5043] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5043] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5043] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480389104422 geckodriver INFO Listening on 127.0.0.1:47589 | |
1480389105423 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.3YEH2ys1lCUi | |
1480389105425 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480389105427 geckodriver::marionette INFO Connecting to Marionette on localhost:46200 | |
(firefox:5222): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5222): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5222): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5222): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480389105661 addons.manager DEBUG Application has been upgraded | |
1480389105679 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480389105681 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480389105686 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480389105688 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480389105689 addons.manager DEBUG Starting provider: XPIProvider | |
1480389105689 addons.xpi DEBUG startup | |
1480389105690 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480389105691 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389105691 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389105691 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389105692 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389105692 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480389105693 addons.xpi DEBUG checkForChanges | |
1480389105693 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480389105695 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389105695 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389105696 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389105697 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389105697 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389105698 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389105698 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389105698 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389105699 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480389105699 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389105700 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480389105708 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.3YEH2ys1lCUi/extensions.json | |
1480389105709 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480389105718 DeferredSave.extensions.json DEBUG Save changes | |
1480389105719 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389105721 DeferredSave.extensions.json DEBUG Starting timer | |
1480389105723 DeferredSave.extensions.json DEBUG Save changes | |
1480389105723 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389105729 DeferredSave.extensions.json DEBUG Save changes | |
1480389105729 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389105735 DeferredSave.extensions.json DEBUG Save changes | |
1480389105736 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480389105740 DeferredSave.extensions.json DEBUG Save changes | |
1480389105740 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389105747 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389105752 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389105752 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389105752 DeferredSave.extensions.json DEBUG Save changes | |
1480389105753 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389105754 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389105763 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389105763 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389105764 DeferredSave.extensions.json DEBUG Save changes | |
1480389105764 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389105765 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389105767 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480389105769 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389105769 DeferredSave.extensions.json DEBUG Save changes | |
1480389105769 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389105770 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389105773 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480389105773 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389105773 DeferredSave.extensions.json DEBUG Save changes | |
1480389105773 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480389105774 DeferredSave.extensions.json DEBUG Save changes | |
1480389105774 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{8ab8aece-bc32-431a-871e-3a37761c5815}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480389105774 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389105775 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{993f0415-6ee4-4064-a95d-267292b0cbc0}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389105775 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389105775 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3c7e85ea-1904-48de-ba42-977549903112}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389105775 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389105776 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{92233cf8-de6e-425b-90dc-585ceb879dfb}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389105776 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389105776 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{7aaf21cd-9ccb-4b06-8c78-0cda02e2b4b8}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480389105776 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389105777 DeferredSave.extensions.json DEBUG Save changes | |
1480389105777 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480389105777 addons.xpi-utils DEBUG Updating add-on states | |
1480389105778 addons.xpi-utils DEBUG Writing add-ons list | |
1480389105779 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389105779 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389105779 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389105779 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389105780 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389105780 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480389105781 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389105781 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480389105784 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480389105785 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480389105785 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480389105785 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480389105785 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480389105785 addons.manager DEBUG Starting provider: GMPProvider | |
1480389105793 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480389105793 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480389105793 addons.manager DEBUG Starting provider: PluginProvider | |
1480389105794 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480389105794 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480389105794 addons.manager DEBUG Completed startup sequence | |
1480389106051 Marionette INFO Listening on port 46200 | |
1480389106411 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480389106411 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480389106412 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480389106435 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480389106435 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480389106437 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480389106443 DeferredSave.extensions.json DEBUG Starting write | |
1480389106585 DeferredSave.extensions.json DEBUG Write succeeded | |
1480389106586 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5299): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5299): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5299): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5299): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5222): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5222): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5222): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5222): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5299] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5299] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480389109066 geckodriver INFO Listening on 127.0.0.1:50247 | |
1480389110066 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.Ptn9znG86MHp | |
1480389110068 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480389110070 geckodriver::marionette INFO Connecting to Marionette on localhost:58408 | |
(firefox:5462): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5462): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5462): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5462): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480389110307 addons.manager DEBUG Application has been upgraded | |
1480389110324 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480389110327 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480389110331 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480389110333 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480389110334 addons.manager DEBUG Starting provider: XPIProvider | |
1480389110334 addons.xpi DEBUG startup | |
1480389110335 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480389110336 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389110336 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389110337 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389110337 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389110338 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480389110338 addons.xpi DEBUG checkForChanges | |
1480389110339 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480389110340 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389110341 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389110341 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389110342 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389110342 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389110343 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389110343 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389110343 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389110344 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480389110344 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389110345 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480389110355 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.Ptn9znG86MHp/extensions.json | |
1480389110356 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480389110366 DeferredSave.extensions.json DEBUG Save changes | |
1480389110366 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389110369 DeferredSave.extensions.json DEBUG Starting timer | |
1480389110370 DeferredSave.extensions.json DEBUG Save changes | |
1480389110371 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389110376 DeferredSave.extensions.json DEBUG Save changes | |
1480389110376 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389110382 DeferredSave.extensions.json DEBUG Save changes | |
1480389110383 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480389110387 DeferredSave.extensions.json DEBUG Save changes | |
1480389110388 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389110394 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389110399 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389110400 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389110400 DeferredSave.extensions.json DEBUG Save changes | |
1480389110401 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389110401 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389110411 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389110411 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389110411 DeferredSave.extensions.json DEBUG Save changes | |
1480389110411 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389110412 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389110415 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480389110416 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389110417 DeferredSave.extensions.json DEBUG Save changes | |
1480389110417 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389110417 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389110421 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480389110421 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389110421 DeferredSave.extensions.json DEBUG Save changes | |
1480389110421 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480389110422 DeferredSave.extensions.json DEBUG Save changes | |
1480389110422 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{16a51aa6-7d44-42df-9759-c2289fb87584}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480389110422 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389110422 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{441f9518-7bc3-4f23-bd63-cf6f0229c752}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389110423 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389110423 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e60c5dea-a293-415f-826c-5f599ccfb440}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389110423 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389110423 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3528712f-a15f-467d-beda-58b7ae2bf4ca}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389110423 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389110424 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{4f943d05-0fff-40fb-beb0-4a98f978218d}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480389110424 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389110425 DeferredSave.extensions.json DEBUG Save changes | |
1480389110425 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480389110425 addons.xpi-utils DEBUG Updating add-on states | |
1480389110426 addons.xpi-utils DEBUG Writing add-ons list | |
1480389110427 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389110427 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389110427 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389110428 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389110428 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389110428 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480389110429 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389110429 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480389110432 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480389110433 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480389110433 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480389110433 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480389110433 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480389110433 addons.manager DEBUG Starting provider: GMPProvider | |
1480389110441 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480389110441 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480389110441 addons.manager DEBUG Starting provider: PluginProvider | |
1480389110441 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480389110442 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480389110442 addons.manager DEBUG Completed startup sequence | |
1480389110705 Marionette INFO Listening on port 58408 | |
1480389111067 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480389111067 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480389111067 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480389111083 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480389111083 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480389111084 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480389111088 DeferredSave.extensions.json DEBUG Starting write | |
1480389111221 DeferredSave.extensions.json DEBUG Write succeeded | |
1480389111222 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5540): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5540): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5540): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5540): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5462): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5462): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5462): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5462): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5540] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5540] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5540] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480389113695 geckodriver INFO Listening on 127.0.0.1:38579 | |
1480389114694 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.G0aAcHKMfpA6 | |
1480389114696 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480389114699 geckodriver::marionette INFO Connecting to Marionette on localhost:43272 | |
(firefox:5703): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5703): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5703): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5703): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480389114967 addons.manager DEBUG Application has been upgraded | |
1480389114987 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480389114989 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480389114993 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480389114995 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480389114996 addons.manager DEBUG Starting provider: XPIProvider | |
1480389114997 addons.xpi DEBUG startup | |
1480389114997 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480389114998 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389114998 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389114999 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389114999 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389115000 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480389115000 addons.xpi DEBUG checkForChanges | |
1480389115001 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480389115002 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389115003 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389115003 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389115004 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389115004 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389115005 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389115005 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389115005 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389115006 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480389115007 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389115007 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480389115015 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.G0aAcHKMfpA6/extensions.json | |
1480389115016 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480389115025 DeferredSave.extensions.json DEBUG Save changes | |
1480389115025 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389115028 DeferredSave.extensions.json DEBUG Starting timer | |
1480389115029 DeferredSave.extensions.json DEBUG Save changes | |
1480389115029 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389115034 DeferredSave.extensions.json DEBUG Save changes | |
1480389115035 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389115041 DeferredSave.extensions.json DEBUG Save changes | |
1480389115041 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480389115045 DeferredSave.extensions.json DEBUG Save changes | |
1480389115045 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389115052 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389115057 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389115057 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389115057 DeferredSave.extensions.json DEBUG Save changes | |
1480389115058 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389115058 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389115068 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389115068 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389115068 DeferredSave.extensions.json DEBUG Save changes | |
1480389115068 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389115069 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389115072 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480389115073 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389115073 DeferredSave.extensions.json DEBUG Save changes | |
1480389115073 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389115074 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389115077 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480389115077 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389115078 DeferredSave.extensions.json DEBUG Save changes | |
1480389115078 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480389115078 DeferredSave.extensions.json DEBUG Save changes | |
1480389115078 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4d074801-4e18-4902-b38b-83c049f2f599}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480389115078 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389115079 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4eb1750b-08f3-4736-9ba4-218fd67144a4}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389115079 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389115079 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ddefa7b6-2928-42eb-9d78-a5ed934fe367}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389115079 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389115080 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{4b676170-b77c-4783-b22a-28eb497a6f30}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389115080 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389115080 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{ecf6dfd9-6e20-43d8-a615-2118faf2aa97}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480389115080 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389115082 DeferredSave.extensions.json DEBUG Save changes | |
1480389115082 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480389115082 addons.xpi-utils DEBUG Updating add-on states | |
1480389115082 addons.xpi-utils DEBUG Writing add-ons list | |
1480389115083 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389115084 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389115084 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389115084 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389115084 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389115085 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480389115085 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389115085 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480389115089 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480389115089 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480389115089 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480389115089 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480389115089 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480389115090 addons.manager DEBUG Starting provider: GMPProvider | |
1480389115097 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480389115097 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480389115097 addons.manager DEBUG Starting provider: PluginProvider | |
1480389115097 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480389115098 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480389115098 addons.manager DEBUG Completed startup sequence | |
1480389115358 Marionette INFO Listening on port 43272 | |
1480389115747 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480389115748 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480389115748 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480389115764 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480389115765 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480389115766 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480389115770 DeferredSave.extensions.json DEBUG Starting write | |
1480389115920 DeferredSave.extensions.json DEBUG Write succeeded | |
1480389115921 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:5780): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5780): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5780): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:5780): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5703): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5703): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5703): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5703): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 5780] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 5780] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 5780] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480389118390 geckodriver INFO Listening on 127.0.0.1:40564 | |
1480389119387 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.kK7Td6tKsKtN | |
1480389119389 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480389119392 geckodriver::marionette INFO Connecting to Marionette on localhost:38175 | |
(firefox:5945): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5945): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5945): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5945): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480389119630 addons.manager DEBUG Application has been upgraded | |
1480389119650 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480389119652 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480389119657 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480389119659 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480389119660 addons.manager DEBUG Starting provider: XPIProvider | |
1480389119661 addons.xpi DEBUG startup | |
1480389119661 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480389119662 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389119662 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389119663 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389119663 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480389119664 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480389119664 addons.xpi DEBUG checkForChanges | |
1480389119665 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480389119666 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389119667 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389119668 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389119668 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389119669 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389119669 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389119670 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480389119670 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389119671 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480389119671 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389119672 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480389119680 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.kK7Td6tKsKtN/extensions.json | |
1480389119681 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480389119691 DeferredSave.extensions.json DEBUG Save changes | |
1480389119691 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389119694 DeferredSave.extensions.json DEBUG Starting timer | |
1480389119695 DeferredSave.extensions.json DEBUG Save changes | |
1480389119695 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389119701 DeferredSave.extensions.json DEBUG Save changes | |
1480389119701 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480389119708 DeferredSave.extensions.json DEBUG Save changes | |
1480389119709 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480389119713 DeferredSave.extensions.json DEBUG Save changes | |
1480389119713 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389119720 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389119725 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389119725 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389119726 DeferredSave.extensions.json DEBUG Save changes | |
1480389119727 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389119727 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389119737 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480389119737 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389119738 DeferredSave.extensions.json DEBUG Save changes | |
1480389119738 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389119739 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389119742 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480389119743 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389119744 DeferredSave.extensions.json DEBUG Save changes | |
1480389119744 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480389119744 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480389119749 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480389119749 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480389119749 DeferredSave.extensions.json DEBUG Save changes | |
1480389119749 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480389119750 DeferredSave.extensions.json DEBUG Save changes | |
1480389119750 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{216e319e-1b9f-4017-a33a-41f888cd6bfe}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480389119750 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389119751 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b15d7839-cc7c-44c9-b8be-1d3068aa9197}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389119751 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389119752 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{491e4817-ab10-4579-b09f-d083bcb0928f}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389119752 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389119752 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{7b9cdbc7-c628-4360-8d3a-3132f880b273}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480389119752 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480389119753 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{db9be24b-c479-42da-b8ed-7e32a0280b3a}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480389119753 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480389119754 DeferredSave.extensions.json DEBUG Save changes | |
1480389119755 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480389119755 addons.xpi-utils DEBUG Updating add-on states | |
1480389119755 addons.xpi-utils DEBUG Writing add-ons list | |
1480389119757 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389119757 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389119757 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389119758 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480389119758 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389119759 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480389119759 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480389119759 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480389119764 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480389119764 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480389119765 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480389119765 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480389119765 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480389119765 addons.manager DEBUG Starting provider: GMPProvider | |
1480389119773 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480389119774 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480389119774 addons.manager DEBUG Starting provider: PluginProvider | |
1480389119774 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480389119774 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480389119775 addons.manager DEBUG Completed startup sequence | |
1480389120039 Marionette INFO Listening on port 38175 | |
1480389120407 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480389120407 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480389120407 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480389120424 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480389120424 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480389120426 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480389120430 DeferredSave.extensions.json DEBUG Starting write | |
1480389120584 DeferredSave.extensions.json DEBUG Write succeeded | |
1480389120585 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:6026): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:6026): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:6026): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:6026): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5945): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5945): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:5945): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 6026] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 6026] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 6026] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480498376245 geckodriver INFO Listening on 127.0.0.1:59911 | |
1480498377261 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.oQLLnjIBcQKU | |
1480498377264 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480498377287 geckodriver::marionette INFO Connecting to Marionette on localhost:33272 | |
(firefox:967): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:967): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:967): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:967): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480498377610 addons.manager DEBUG Application has been upgraded | |
1480498377630 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480498377632 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480498377636 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480498377638 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480498377639 addons.manager DEBUG Starting provider: XPIProvider | |
1480498377640 addons.xpi DEBUG startup | |
1480498377640 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480498377641 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498377641 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498377642 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498377642 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498377643 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480498377643 addons.xpi DEBUG checkForChanges | |
1480498377644 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480498377645 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498377646 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498377646 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498377647 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498377647 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498377648 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498377648 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498377648 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498377649 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480498377649 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498377650 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480498377657 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.oQLLnjIBcQKU/extensions.json | |
1480498377658 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480498377668 DeferredSave.extensions.json DEBUG Save changes | |
1480498377668 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498377671 DeferredSave.extensions.json DEBUG Starting timer | |
1480498377672 DeferredSave.extensions.json DEBUG Save changes | |
1480498377672 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498377677 DeferredSave.extensions.json DEBUG Save changes | |
1480498377678 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498377683 DeferredSave.extensions.json DEBUG Save changes | |
1480498377684 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480498377688 DeferredSave.extensions.json DEBUG Save changes | |
1480498377688 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498377695 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498377699 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498377699 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498377699 DeferredSave.extensions.json DEBUG Save changes | |
1480498377700 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498377701 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498377710 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498377710 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498377710 DeferredSave.extensions.json DEBUG Save changes | |
1480498377711 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498377711 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498377714 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480498377715 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498377715 DeferredSave.extensions.json DEBUG Save changes | |
1480498377716 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498377716 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498377719 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480498377719 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498377720 DeferredSave.extensions.json DEBUG Save changes | |
1480498377720 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480498377720 DeferredSave.extensions.json DEBUG Save changes | |
1480498377720 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1bf97f3e-53e8-4f2a-a1c6-f964f1395f6a}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480498377721 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498377721 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{829dd700-364a-4a56-ad06-c6096d43a430}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498377721 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498377721 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{03bfc694-e5dc-44d0-9302-edba5320aea7}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498377721 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498377722 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c70103b2-3b47-4d98-bdeb-1dcca13c76e4}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498377722 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498377722 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{252544e4-c40a-4e82-b7bd-889d12592642}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480498377722 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498377724 DeferredSave.extensions.json DEBUG Save changes | |
1480498377724 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480498377724 addons.xpi-utils DEBUG Updating add-on states | |
1480498377724 addons.xpi-utils DEBUG Writing add-ons list | |
1480498377725 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498377725 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498377726 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498377726 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498377726 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498377727 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480498377727 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498377727 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480498377730 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480498377731 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480498377731 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480498377731 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480498377731 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480498377731 addons.manager DEBUG Starting provider: GMPProvider | |
1480498377739 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480498377739 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480498377739 addons.manager DEBUG Starting provider: PluginProvider | |
1480498377739 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480498377739 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480498377740 addons.manager DEBUG Completed startup sequence | |
1480498377936 Marionette INFO Listening on port 33272 | |
1480498378166 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480498378167 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480498378167 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480498378191 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480498378191 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480498378193 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480498378198 DeferredSave.extensions.json DEBUG Starting write | |
1480498378376 DeferredSave.extensions.json DEBUG Write succeeded | |
1480498378377 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1096): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1096): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1096): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1096): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:967): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:967): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:967): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:967): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:967): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f26f303e100' of type 'MaiAtkType13b' | |
(firefox:967): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:967): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f26f306bf10' of type 'MaiAtkType13b' | |
(firefox:967): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f26f17bd6f0' of type 'MaiAtkType13b' | |
[Child 1096] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1096] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480498386883 geckodriver INFO Listening on 127.0.0.1:46658 | |
1480498387883 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.55AVvI7d9nJ2 | |
1480498387886 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480498387888 geckodriver::marionette INFO Connecting to Marionette on localhost:49363 | |
(firefox:1378): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1378): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1378): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1378): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480498388302 addons.manager DEBUG Application has been upgraded | |
1480498388320 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480498388323 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480498388327 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480498388329 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480498388330 addons.manager DEBUG Starting provider: XPIProvider | |
1480498388331 addons.xpi DEBUG startup | |
1480498388331 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480498388332 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498388333 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498388333 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498388333 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498388334 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480498388334 addons.xpi DEBUG checkForChanges | |
1480498388335 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480498388336 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498388337 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498388338 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498388338 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498388338 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498388339 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498388339 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498388339 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498388340 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480498388341 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498388341 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480498388349 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.55AVvI7d9nJ2/extensions.json | |
1480498388350 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480498388359 DeferredSave.extensions.json DEBUG Save changes | |
1480498388360 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498388362 DeferredSave.extensions.json DEBUG Starting timer | |
1480498388364 DeferredSave.extensions.json DEBUG Save changes | |
1480498388364 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498388369 DeferredSave.extensions.json DEBUG Save changes | |
1480498388369 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498388375 DeferredSave.extensions.json DEBUG Save changes | |
1480498388376 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480498388380 DeferredSave.extensions.json DEBUG Save changes | |
1480498388380 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498388387 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498388392 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498388392 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498388392 DeferredSave.extensions.json DEBUG Save changes | |
1480498388393 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498388394 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498388403 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498388403 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498388404 DeferredSave.extensions.json DEBUG Save changes | |
1480498388404 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498388405 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498388407 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480498388409 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498388409 DeferredSave.extensions.json DEBUG Save changes | |
1480498388409 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498388410 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498388413 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480498388413 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498388414 DeferredSave.extensions.json DEBUG Save changes | |
1480498388414 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480498388414 DeferredSave.extensions.json DEBUG Save changes | |
1480498388414 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{55f7f5f0-8c33-43b7-b8e0-cf74c82043a7}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480498388415 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498388415 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d0c3a7e9-2c57-4ddd-add1-ae720d4b3cf3}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498388415 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498388415 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{513c8621-1c54-4fb9-81ef-abb9c316db42}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498388416 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498388416 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3b00e776-8844-4e54-b8c1-36a692115736}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498388416 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498388416 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{ea4e6e69-5d31-4686-9a23-a4e46a8ac220}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480498388416 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498388418 DeferredSave.extensions.json DEBUG Save changes | |
1480498388418 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480498388418 addons.xpi-utils DEBUG Updating add-on states | |
1480498388419 addons.xpi-utils DEBUG Writing add-ons list | |
1480498388420 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498388420 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498388420 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498388421 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498388421 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498388422 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480498388422 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498388422 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480498388427 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480498388427 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480498388427 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480498388428 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480498388428 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480498388428 addons.manager DEBUG Starting provider: GMPProvider | |
1480498388438 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480498388438 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480498388438 addons.manager DEBUG Starting provider: PluginProvider | |
1480498388438 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480498388438 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480498388439 addons.manager DEBUG Completed startup sequence | |
1480498388615 Marionette INFO Listening on port 49363 | |
1480498388825 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480498388825 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480498388825 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480498388842 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480498388842 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480498388843 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480498388846 DeferredSave.extensions.json DEBUG Starting write | |
1480498388982 DeferredSave.extensions.json DEBUG Write succeeded | |
1480498388983 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1457): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1457): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1457): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1457): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1378): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1378): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1378): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1378): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1378): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f242cf74650' of type 'MaiAtkType13b' | |
(firefox:1378): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1378): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f242d0a9150' of type 'MaiAtkType13b' | |
(firefox:1378): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f242b76e510' of type 'MaiAtkType13b' | |
(firefox:1378): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f242b31a600' of type 'MaiAtkType13b' | |
[Child 1457] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1457] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480498398235 geckodriver INFO Listening on 127.0.0.1:60217 | |
1480498399236 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.aQwzI48Nqa5Y | |
1480498399238 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480498399241 geckodriver::marionette INFO Connecting to Marionette on localhost:58650 | |
(firefox:1745): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1745): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1745): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:1745): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480498399460 addons.manager DEBUG Application has been upgraded | |
1480498399479 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480498399481 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480498399485 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480498399487 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480498399488 addons.manager DEBUG Starting provider: XPIProvider | |
1480498399489 addons.xpi DEBUG startup | |
1480498399489 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480498399490 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498399491 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498399491 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498399491 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498399492 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480498399492 addons.xpi DEBUG checkForChanges | |
1480498399493 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480498399494 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498399495 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498399496 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498399496 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498399496 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498399497 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498399497 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498399498 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498399498 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480498399499 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498399499 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480498399508 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.aQwzI48Nqa5Y/extensions.json | |
1480498399509 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480498399518 DeferredSave.extensions.json DEBUG Save changes | |
1480498399518 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498399521 DeferredSave.extensions.json DEBUG Starting timer | |
1480498399522 DeferredSave.extensions.json DEBUG Save changes | |
1480498399522 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498399527 DeferredSave.extensions.json DEBUG Save changes | |
1480498399528 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498399534 DeferredSave.extensions.json DEBUG Save changes | |
1480498399535 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480498399538 DeferredSave.extensions.json DEBUG Save changes | |
1480498399539 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498399545 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498399550 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498399550 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498399550 DeferredSave.extensions.json DEBUG Save changes | |
1480498399551 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498399552 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498399561 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498399561 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498399562 DeferredSave.extensions.json DEBUG Save changes | |
1480498399562 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498399563 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498399565 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480498399566 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498399567 DeferredSave.extensions.json DEBUG Save changes | |
1480498399567 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498399568 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498399571 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480498399571 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498399571 DeferredSave.extensions.json DEBUG Save changes | |
1480498399571 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480498399572 DeferredSave.extensions.json DEBUG Save changes | |
1480498399572 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{cc7ecb42-a703-407c-9713-515ebebbadc8}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480498399572 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498399572 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{b899dd8d-6b90-454a-a3f0-61494dfc2c72}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498399573 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498399573 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{3ed678d0-7c5d-4dd6-bba8-a64161e2f715}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498399573 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498399573 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d6325acb-c312-45d0-9201-f6d33e5ece34}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498399574 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498399574 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{ce51a6f4-5b66-4e1c-85c6-d7086d3111bb}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480498399574 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498399575 DeferredSave.extensions.json DEBUG Save changes | |
1480498399575 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480498399575 addons.xpi-utils DEBUG Updating add-on states | |
1480498399576 addons.xpi-utils DEBUG Writing add-ons list | |
1480498399577 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498399577 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498399577 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498399578 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498399578 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498399578 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480498399579 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498399579 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480498399582 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480498399582 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480498399583 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480498399583 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480498399583 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480498399583 addons.manager DEBUG Starting provider: GMPProvider | |
1480498399591 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480498399591 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480498399591 addons.manager DEBUG Starting provider: PluginProvider | |
1480498399591 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480498399591 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480498399592 addons.manager DEBUG Completed startup sequence | |
1480498399777 Marionette INFO Listening on port 58650 | |
1480498400004 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480498400004 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480498400004 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480498400020 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480498400020 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480498400022 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480498400026 DeferredSave.extensions.json DEBUG Starting write | |
1480498400162 DeferredSave.extensions.json DEBUG Write succeeded | |
1480498400163 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:1821): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1821): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1821): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:1821): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:1745): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1745): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1745): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1745): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1745): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f22e608ec90' of type 'MaiAtkType13b' | |
(firefox:1745): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f22e865a290' of type 'MaiAtkType139' | |
(firefox:1745): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:1745): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f22e41ed240' of type 'MaiAtkType139' | |
(firefox:1745): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f22e883bc90' of type 'MaiAtkType13b' | |
(firefox:1745): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f22e88b01f0' of type 'MaiAtkType139' | |
(firefox:1745): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f22e88ca470' of type 'MaiAtkType13b' | |
(firefox:1745): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f22e963ad30' of type 'MaiAtkType139' | |
[Child 1821] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 1821] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 1821] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480498439951 geckodriver INFO Listening on 127.0.0.1:45385 | |
1480498440950 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.1gRNupvt3oU7 | |
1480498440953 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480498440957 geckodriver::marionette INFO Connecting to Marionette on localhost:57099 | |
(firefox:2308): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2308): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2308): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2308): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480498441155 addons.manager DEBUG Application has been upgraded | |
1480498441174 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480498441176 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480498441180 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480498441182 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480498441183 addons.manager DEBUG Starting provider: XPIProvider | |
1480498441183 addons.xpi DEBUG startup | |
1480498441184 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480498441185 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498441185 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498441186 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498441186 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498441187 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480498441187 addons.xpi DEBUG checkForChanges | |
1480498441188 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480498441189 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498441190 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498441190 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498441191 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498441191 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498441192 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498441192 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498441192 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498441193 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480498441193 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498441194 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480498441202 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.1gRNupvt3oU7/extensions.json | |
1480498441203 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480498441212 DeferredSave.extensions.json DEBUG Save changes | |
1480498441212 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498441215 DeferredSave.extensions.json DEBUG Starting timer | |
1480498441216 DeferredSave.extensions.json DEBUG Save changes | |
1480498441216 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498441221 DeferredSave.extensions.json DEBUG Save changes | |
1480498441221 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498441227 DeferredSave.extensions.json DEBUG Save changes | |
1480498441228 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480498441232 DeferredSave.extensions.json DEBUG Save changes | |
1480498441232 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498441239 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498441243 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498441244 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498441244 DeferredSave.extensions.json DEBUG Save changes | |
1480498441245 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498441245 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498441254 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498441255 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498441255 DeferredSave.extensions.json DEBUG Save changes | |
1480498441255 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498441256 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498441258 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480498441260 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498441260 DeferredSave.extensions.json DEBUG Save changes | |
1480498441260 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498441261 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498441264 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480498441264 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498441264 DeferredSave.extensions.json DEBUG Save changes | |
1480498441264 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480498441265 DeferredSave.extensions.json DEBUG Save changes | |
1480498441265 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{7dd031c0-5bf1-4b08-a39f-02ff6e877464}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480498441265 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498441265 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{e2798ab3-e356-43c8-a854-db809ad0f280}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498441266 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498441266 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1ceebb10-4788-4837-8822-efbe2c3fc4e9}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498441266 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498441266 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{35840e05-79a1-4531-bc0a-0429d1b86e0b}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498441266 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498441267 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{2ba054d9-cb48-4921-ac25-ab489d3583c1}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480498441267 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498441268 DeferredSave.extensions.json DEBUG Save changes | |
1480498441268 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480498441268 addons.xpi-utils DEBUG Updating add-on states | |
1480498441269 addons.xpi-utils DEBUG Writing add-ons list | |
1480498441270 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498441270 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498441270 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498441270 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498441271 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498441271 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480498441271 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498441272 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480498441275 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480498441275 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480498441275 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480498441275 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480498441276 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480498441276 addons.manager DEBUG Starting provider: GMPProvider | |
1480498441283 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480498441283 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480498441283 addons.manager DEBUG Starting provider: PluginProvider | |
1480498441284 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480498441284 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480498441284 addons.manager DEBUG Completed startup sequence | |
1480498441475 Marionette INFO Listening on port 57099 | |
1480498441677 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480498441677 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480498441677 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480498441693 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480498441693 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480498441695 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480498441697 DeferredSave.extensions.json DEBUG Starting write | |
1480498441833 DeferredSave.extensions.json DEBUG Write succeeded | |
1480498441835 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2385): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2385): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2385): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2385): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2308): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2308): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2308): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2308): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2308): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4358eb97e0' of type 'MaiAtkType13b' | |
(firefox:2308): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2308): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f43515aadd0' of type 'MaiAtkType13b' | |
(firefox:2308): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f434f323c40' of type 'MaiAtkType13b' | |
(firefox:2308): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f4351513d80' of type 'MaiAtkType13b' | |
[Child 2385] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2385] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480498469890 geckodriver INFO Listening on 127.0.0.1:53296 | |
1480498470891 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.OOKCJncjyt8f | |
1480498470893 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480498470896 geckodriver::marionette INFO Connecting to Marionette on localhost:44970 | |
(firefox:2789): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2789): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2789): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:2789): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480498471488 addons.manager DEBUG Application has been upgraded | |
1480498471509 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480498471511 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480498471516 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480498471519 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480498471520 addons.manager DEBUG Starting provider: XPIProvider | |
1480498471520 addons.xpi DEBUG startup | |
1480498471521 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480498471522 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498471523 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498471523 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498471523 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498471524 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480498471525 addons.xpi DEBUG checkForChanges | |
1480498471525 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480498471527 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498471528 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498471528 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498471529 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498471529 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498471530 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498471531 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498471531 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498471531 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480498471532 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498471533 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480498471543 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.OOKCJncjyt8f/extensions.json | |
1480498471544 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480498471555 DeferredSave.extensions.json DEBUG Save changes | |
1480498471555 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498471558 DeferredSave.extensions.json DEBUG Starting timer | |
1480498471560 DeferredSave.extensions.json DEBUG Save changes | |
1480498471560 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498471566 DeferredSave.extensions.json DEBUG Save changes | |
1480498471566 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498471573 DeferredSave.extensions.json DEBUG Save changes | |
1480498471575 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480498471579 DeferredSave.extensions.json DEBUG Save changes | |
1480498471580 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498471588 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498471594 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498471594 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498471594 DeferredSave.extensions.json DEBUG Save changes | |
1480498471595 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498471596 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498471606 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498471606 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498471607 DeferredSave.extensions.json DEBUG Save changes | |
1480498471607 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498471608 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498471611 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480498471612 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498471612 DeferredSave.extensions.json DEBUG Save changes | |
1480498471613 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498471613 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498471617 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480498471617 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498471617 DeferredSave.extensions.json DEBUG Save changes | |
1480498471617 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480498471618 DeferredSave.extensions.json DEBUG Save changes | |
1480498471618 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1645d5fb-8ef5-4c6f-a7f6-a75253850141}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480498471618 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498471619 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1b4f1448-65bd-4537-9786-2a419a8d4429}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498471619 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498471619 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{8bfca3dc-2c4e-4224-b461-4aa586afcf76}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498471619 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498471620 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{8f06a39c-c146-4a9a-b790-7751e6c35e18}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498471620 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498471620 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{ef3031ae-b845-4d00-9269-8aff02ee5556}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480498471620 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498471622 DeferredSave.extensions.json DEBUG Save changes | |
1480498471622 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480498471622 addons.xpi-utils DEBUG Updating add-on states | |
1480498471623 addons.xpi-utils DEBUG Writing add-ons list | |
1480498471624 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498471624 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498471624 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498471624 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498471625 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498471625 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480498471626 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498471626 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480498471630 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480498471630 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480498471630 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480498471630 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480498471630 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480498471631 addons.manager DEBUG Starting provider: GMPProvider | |
1480498471639 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480498471640 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480498471640 addons.manager DEBUG Starting provider: PluginProvider | |
1480498471640 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480498471640 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480498471641 addons.manager DEBUG Completed startup sequence | |
1480498471832 Marionette INFO Listening on port 44970 | |
1480498472031 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480498472031 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480498472031 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480498472047 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480498472047 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480498472049 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480498472051 DeferredSave.extensions.json DEBUG Starting write | |
1480498472203 DeferredSave.extensions.json DEBUG Write succeeded | |
1480498472204 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:2868): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2868): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2868): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:2868): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:2789): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2789): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2789): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2789): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2789): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f721b89a740' of type 'MaiAtkType13b' | |
(firefox:2789): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:2789): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f721b743c90' of type 'MaiAtkType13b' | |
(firefox:2789): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f721b89a5b0' of type 'MaiAtkType13b' | |
(firefox:2789): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f7223c43240' of type 'MaiAtkType139' | |
(firefox:2789): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f721b77c420' of type 'MaiAtkType13b' | |
(firefox:2789): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'selection_changed' is invalid for instance '0x7f721d4ed470' of type 'MaiAtkType139' | |
[Child 2868] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 2868] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480498506094 geckodriver INFO Listening on 127.0.0.1:38832 | |
1480498507094 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.oo8grqbLjdbf | |
1480498507096 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480498507099 geckodriver::marionette INFO Connecting to Marionette on localhost:45758 | |
(firefox:3577): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3577): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3577): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:3577): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480498507301 addons.manager DEBUG Application has been upgraded | |
1480498507325 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480498507328 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480498507334 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480498507337 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480498507338 addons.manager DEBUG Starting provider: XPIProvider | |
1480498507339 addons.xpi DEBUG startup | |
1480498507339 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480498507340 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498507341 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498507341 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498507341 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498507342 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480498507343 addons.xpi DEBUG checkForChanges | |
1480498507343 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480498507344 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498507345 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498507346 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498507347 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498507347 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498507348 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498507348 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498507349 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498507349 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480498507350 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498507351 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480498507362 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.oo8grqbLjdbf/extensions.json | |
1480498507363 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480498507375 DeferredSave.extensions.json DEBUG Save changes | |
1480498507376 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498507379 DeferredSave.extensions.json DEBUG Starting timer | |
1480498507380 DeferredSave.extensions.json DEBUG Save changes | |
1480498507380 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498507386 DeferredSave.extensions.json DEBUG Save changes | |
1480498507386 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498507394 DeferredSave.extensions.json DEBUG Save changes | |
1480498507395 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480498507399 DeferredSave.extensions.json DEBUG Save changes | |
1480498507400 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498507408 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498507414 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498507414 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498507414 DeferredSave.extensions.json DEBUG Save changes | |
1480498507415 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498507416 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498507426 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498507426 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498507427 DeferredSave.extensions.json DEBUG Save changes | |
1480498507427 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498507428 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498507431 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480498507433 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498507433 DeferredSave.extensions.json DEBUG Save changes | |
1480498507433 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498507434 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498507437 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480498507437 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498507438 DeferredSave.extensions.json DEBUG Save changes | |
1480498507438 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480498507438 DeferredSave.extensions.json DEBUG Save changes | |
1480498507438 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d7e0019e-8fd2-4dba-a7ae-a65e8d20ee5b}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480498507439 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498507439 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{6730d67b-413b-4fba-888f-2f3c9487bcbb}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498507439 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498507440 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{06c89021-aafd-4877-b20b-b2b2b9d7c4a0}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498507440 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498507440 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{d730b1c8-76c5-48b8-ba15-8600d83a845a}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498507440 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498507441 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{0bf3d759-458b-4694-81b8-ae00b1ad41d6}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480498507441 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498507442 DeferredSave.extensions.json DEBUG Save changes | |
1480498507442 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480498507442 addons.xpi-utils DEBUG Updating add-on states | |
1480498507443 addons.xpi-utils DEBUG Writing add-ons list | |
1480498507444 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498507444 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498507444 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498507445 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498507445 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498507446 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480498507446 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498507446 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480498507450 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480498507450 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480498507450 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480498507450 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480498507451 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480498507451 addons.manager DEBUG Starting provider: GMPProvider | |
1480498507459 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480498507459 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480498507459 addons.manager DEBUG Starting provider: PluginProvider | |
1480498507460 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480498507460 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480498507460 addons.manager DEBUG Completed startup sequence | |
1480498507654 Marionette INFO Listening on port 45758 | |
1480498507881 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480498507881 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480498507881 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480498507899 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480498507900 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480498507901 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480498507905 DeferredSave.extensions.json DEBUG Starting write | |
1480498508055 DeferredSave.extensions.json DEBUG Write succeeded | |
1480498508056 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:3648): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3648): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3648): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:3648): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:3577): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3577): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3577): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3577): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3577): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f81a7058920' of type 'MaiAtkType13b' | |
(firefox:3577): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:3577): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f81aebb9830' of type 'MaiAtkType13b' | |
(firefox:3577): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f81aa43e470' of type 'MaiAtkType13b' | |
[Child 3648] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 3648] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 3648] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480498541186 geckodriver INFO Listening on 127.0.0.1:45098 | |
1480498542186 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.FAl9NsEUgFKR | |
1480498542452 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480498542455 geckodriver::marionette INFO Connecting to Marionette on localhost:48390 | |
(firefox:4283): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4283): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4283): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4283): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480498542795 addons.manager DEBUG Application has been upgraded | |
1480498542813 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480498542815 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480498542820 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480498542822 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480498542822 addons.manager DEBUG Starting provider: XPIProvider | |
1480498542823 addons.xpi DEBUG startup | |
1480498542823 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480498542824 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498542825 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498542825 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498542825 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498542826 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480498542826 addons.xpi DEBUG checkForChanges | |
1480498542827 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480498542828 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498542829 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498542830 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498542830 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498542830 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498542831 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498542831 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498542831 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498542832 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480498542833 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498542833 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480498542841 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.FAl9NsEUgFKR/extensions.json | |
1480498542842 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480498542851 DeferredSave.extensions.json DEBUG Save changes | |
1480498542851 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498542854 DeferredSave.extensions.json DEBUG Starting timer | |
1480498542855 DeferredSave.extensions.json DEBUG Save changes | |
1480498542855 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498542860 DeferredSave.extensions.json DEBUG Save changes | |
1480498542860 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498542866 DeferredSave.extensions.json DEBUG Save changes | |
1480498542867 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480498542871 DeferredSave.extensions.json DEBUG Save changes | |
1480498542871 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498542877 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498542882 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498542882 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498542882 DeferredSave.extensions.json DEBUG Save changes | |
1480498542883 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498542884 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498542893 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498542893 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498542893 DeferredSave.extensions.json DEBUG Save changes | |
1480498542894 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498542894 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498542897 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480498542898 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498542899 DeferredSave.extensions.json DEBUG Save changes | |
1480498542899 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498542900 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498542903 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480498542903 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498542903 DeferredSave.extensions.json DEBUG Save changes | |
1480498542903 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480498542903 DeferredSave.extensions.json DEBUG Save changes | |
1480498542904 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{84ce7bb2-7201-4eac-89a6-6d46bd229b1b}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480498542904 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498542904 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{c8f07569-622c-41ee-803d-3d44e469b2bc}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498542904 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498542905 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a5358ee7-f3e7-4d9c-a090-d2cf6d4c49e9}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498542905 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498542905 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{f142e69d-0939-4294-9500-a30e112237fd}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498542905 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498542906 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{6de00fae-275e-4b54-b746-0c8bf834b9be}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480498542906 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498542907 DeferredSave.extensions.json DEBUG Save changes | |
1480498542908 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480498542908 addons.xpi-utils DEBUG Updating add-on states | |
1480498542908 addons.xpi-utils DEBUG Writing add-ons list | |
1480498542910 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498542910 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498542910 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498542911 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498542911 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498542912 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480498542912 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498542913 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480498542917 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480498542917 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480498542917 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480498542918 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480498542918 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480498542919 addons.manager DEBUG Starting provider: GMPProvider | |
1480498542930 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480498542930 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480498542930 addons.manager DEBUG Starting provider: PluginProvider | |
1480498542930 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480498542930 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480498542931 addons.manager DEBUG Completed startup sequence | |
1480498543198 Marionette INFO Listening on port 48390 | |
1480498543583 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480498543583 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480498543583 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480498543599 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480498543599 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480498543601 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480498543605 DeferredSave.extensions.json DEBUG Starting write | |
1480498543763 DeferredSave.extensions.json DEBUG Write succeeded | |
1480498543764 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4364): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4364): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4364): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4364): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4283): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4283): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4283): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4283): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4283): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f1f27ae4420' of type 'MaiAtkType13b' | |
(firefox:4283): GLib-GObject-WARNING **: gsignal.c:3410: signal name 'load_complete' is invalid for instance '0x7f1f27d5a970' of type 'MaiAtkType13b' | |
[Child 4364] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4364] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480498566226 geckodriver INFO Listening on 127.0.0.1:34325 | |
1480498567227 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.YE3INrd9S926 | |
1480498567229 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480498567232 geckodriver::marionette INFO Connecting to Marionette on localhost:45681 | |
(firefox:4796): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4796): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4796): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:4796): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480498567474 addons.manager DEBUG Application has been upgraded | |
1480498567493 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480498567496 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480498567500 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480498567503 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480498567504 addons.manager DEBUG Starting provider: XPIProvider | |
1480498567504 addons.xpi DEBUG startup | |
1480498567505 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480498567506 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498567506 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498567507 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498567507 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498567508 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480498567508 addons.xpi DEBUG checkForChanges | |
1480498567509 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480498567510 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498567511 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498567512 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498567513 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498567513 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498567514 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498567514 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498567514 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498567515 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480498567516 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498567517 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480498567526 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.YE3INrd9S926/extensions.json | |
1480498567527 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480498567538 DeferredSave.extensions.json DEBUG Save changes | |
1480498567538 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498567540 DeferredSave.extensions.json DEBUG Starting timer | |
1480498567542 DeferredSave.extensions.json DEBUG Save changes | |
1480498567542 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498567547 DeferredSave.extensions.json DEBUG Save changes | |
1480498567547 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498567553 DeferredSave.extensions.json DEBUG Save changes | |
1480498567554 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480498567558 DeferredSave.extensions.json DEBUG Save changes | |
1480498567559 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498567565 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498567571 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498567572 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498567572 DeferredSave.extensions.json DEBUG Save changes | |
1480498567573 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498567573 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498567583 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498567583 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498567583 DeferredSave.extensions.json DEBUG Save changes | |
1480498567583 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498567584 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498567587 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480498567588 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498567588 DeferredSave.extensions.json DEBUG Save changes | |
1480498567589 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498567589 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498567592 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480498567592 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498567593 DeferredSave.extensions.json DEBUG Save changes | |
1480498567593 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480498567593 DeferredSave.extensions.json DEBUG Save changes | |
1480498567594 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{64c0d7e2-976c-4fe2-8389-84be7f200d63}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480498567594 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498567594 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{6eb85f79-18a1-4362-96b1-1adef2ea48a8}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498567594 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498567595 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{cfcf3c41-13c2-4edc-9662-6f8c0f0b95cf}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498567595 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498567595 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{ea484562-cde0-45b2-88d0-b1ae71376eb1}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498567595 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498567596 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{f22686dc-33c4-421d-8ab9-443a7aa52327}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480498567596 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498567597 DeferredSave.extensions.json DEBUG Save changes | |
1480498567597 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480498567597 addons.xpi-utils DEBUG Updating add-on states | |
1480498567598 addons.xpi-utils DEBUG Writing add-ons list | |
1480498567599 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498567599 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498567599 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498567599 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498567600 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498567600 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480498567601 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498567601 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480498567604 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480498567604 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480498567605 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480498567605 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480498567605 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480498567605 addons.manager DEBUG Starting provider: GMPProvider | |
1480498567613 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480498567613 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480498567613 addons.manager DEBUG Starting provider: PluginProvider | |
1480498567613 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480498567613 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480498567614 addons.manager DEBUG Completed startup sequence | |
1480498567854 Marionette INFO Listening on port 45681 | |
1480498568248 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480498568248 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480498568248 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480498568264 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480498568264 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480498568265 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
1480498568269 DeferredSave.extensions.json DEBUG Starting write | |
1480498568414 DeferredSave.extensions.json DEBUG Write succeeded | |
1480498568415 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 | |
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. | |
(/opt/firefox-50.0/plugin-container:4856): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4856): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4856): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(/opt/firefox-50.0/plugin-container:4856): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:4796): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4796): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4796): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
(firefox:4796): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 'g_type_parent (interface_type) == G_TYPE_INTERFACE' failed | |
[Child 4856] WARNING: pipe error (3): Connection reset by peer: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 320 | |
[Child 4856] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
[Child 4856] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-l64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2056 | |
1480498570944 geckodriver INFO Listening on 127.0.0.1:37699 | |
1480498571945 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.49gQDwpi86Tn | |
1480498571947 geckodriver::marionette INFO Starting browser /usr/bin/firefox | |
1480498571950 geckodriver::marionette INFO Connecting to Marionette on localhost:45750 | |
(firefox:5029): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5029): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
(firefox:5029): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed | |
(firefox:5029): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed | |
1480498572233 addons.manager DEBUG Application has been upgraded | |
1480498572253 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] | |
1480498572255 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] | |
1480498572260 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm | |
1480498572263 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm | |
1480498572264 addons.manager DEBUG Starting provider: XPIProvider | |
1480498572264 addons.xpi DEBUG startup | |
1480498572265 addons.xpi INFO SystemAddonInstallLocation directory is missing | |
1480498572266 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498572266 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498572266 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498572267 addons.xpi INFO Mapping [email protected] to /opt/firefox-50.0/browser/features/[email protected] | |
1480498572268 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi | |
1480498572268 addons.xpi DEBUG checkForChanges | |
1480498572269 addons.xpi DEBUG Loaded add-on state from prefs: {} | |
1480498572270 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498572271 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498572272 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498572272 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498572273 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498572273 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498572274 addons.xpi DEBUG New add-on [email protected] in app-system-defaults | |
1480498572274 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498572275 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global | |
1480498572275 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498572276 addons.xpi DEBUG getInstallState changed: true, state: {"app-system-defaults":{"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000},"[email protected]":{"d":"/opt/firefox-50.0/browser/features/[email protected]","st":1478328701000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1478328701000}}} | |
1480498572284 addons.xpi-utils DEBUG Opening XPI database /tmp/rust_mozprofile.49gQDwpi86Tn/extensions.json | |
1480498572285 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled | |
1480498572296 DeferredSave.extensions.json DEBUG Save changes | |
1480498572296 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498572299 DeferredSave.extensions.json DEBUG Starting timer | |
1480498572300 DeferredSave.extensions.json DEBUG Save changes | |
1480498572300 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498572306 DeferredSave.extensions.json DEBUG Save changes | |
1480498572306 addons.xpi-utils DEBUG New add-on [email protected] installed in app-system-defaults | |
1480498572313 DeferredSave.extensions.json DEBUG Save changes | |
1480498572314 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global | |
1480498572318 DeferredSave.extensions.json DEBUG Save changes | |
1480498572319 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498572326 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498572332 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498572332 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498572332 DeferredSave.extensions.json DEBUG Save changes | |
1480498572333 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498572334 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498572344 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0 | |
1480498572345 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498572345 DeferredSave.extensions.json DEBUG Save changes | |
1480498572345 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498572346 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498572349 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.5 | |
1480498572350 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498572351 DeferredSave.extensions.json DEBUG Save changes | |
1480498572351 addons.manager DEBUG Registering startup change 'installed' for [email protected] | |
1480498572352 addons.xpi DEBUG Loading bootstrap scope from /opt/firefox-50.0/browser/features/[email protected] | |
1480498572355 addons.xpi DEBUG Calling bootstrap method install on [email protected] version 1.0.5 | |
1480498572355 addons.xpi-utils DEBUG Make addon app-system-defaults:[email protected] visible | |
1480498572356 DeferredSave.extensions.json DEBUG Save changes | |
1480498572356 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible | |
1480498572356 DeferredSave.extensions.json DEBUG Save changes | |
1480498572356 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1bc56179-1527-46cd-9eb6-6218240538ef}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":5973,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true} | |
1480498572357 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498572357 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{93bfe72d-9194-48b3-b4ca-9a1a3ef7ca0d}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1500,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498572357 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498572358 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{1fb6a2b9-268c-44f1-abfe-563954de9d75}","location":"app-system-defaults","version":"1.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":7208,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498572358 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498572358 addons.xpi DEBUG Updating XPIState for {"id":"[email protected]","syncGUID":"{a6ee7cd4-caa4-4535-8872-45afe9b31a2d}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/features/[email protected]","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":916880,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} | |
1480498572358 addons.xpi DEBUG getModTime: Recursive scan of [email protected] | |
1480498572359 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{c0c97af8-992f-4cb9-8187-0a6ddb1bd9ab}","location":"app-global","version":"50.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/opt/firefox-50.0/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1478328701000,"updateDate":1478328701000,"applyBackgroundUpdates":1,"skinnable":true,"size":4926,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"50.0","maxVersion":"50.0"}],"targetPlatforms":[],"seen":true} | |
1480498572359 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} | |
1480498572360 DeferredSave.extensions.json DEBUG Save changes | |
1480498572360 addons.xpi DEBUG Updating database with changes to installed add-ons | |
1480498572360 addons.xpi-utils DEBUG Updating add-on states | |
1480498572361 addons.xpi-utils DEBUG Writing add-ons list | |
1480498572362 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498572362 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498572362 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498572363 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0 | |
1480498572363 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498572364 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.5 | |
1480498572364 addons.xpi DEBUG Registering manifest for /opt/firefox-50.0/browser/features/[email protected] | |
1480498572364 addons.xpi DEBUG Calling bootstrap method startup on [email protected] version 1.0.5 | |
1480498572368 addons.manager DEBUG Registering shutdown blocker for XPIProvider | |
1480498572368 addons.manager DEBUG Provider finished startup: XPIProvider | |
1480498572368 addons.manager DEBUG Starting provider: LightweightThemeManager | |
1480498572369 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager | |
1480498572369 addons.manager DEBUG Provider finished startup: LightweightThemeManager | |
1480498572370 addons.manager DEBUG Starting provider: GMPProvider | |
1480498572378 addons.manager DEBUG Registering shutdown blocker for GMPProvider | |
1480498572378 addons.manager DEBUG Provider finished startup: GMPProvider | |
1480498572378 addons.manager DEBUG Starting provider: PluginProvider | |
1480498572378 addons.manager DEBUG Registering shutdown blocker for PluginProvider | |
1480498572379 addons.manager DEBUG Provider finished startup: PluginProvider | |
1480498572379 addons.manager DEBUG Completed startup sequence | |
1480498572607 Marionette INFO Listening on port 45750 | |
1480498572964 addons.manager DEBUG Starting provider: <unnamed-provider> | |
1480498572964 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> | |
1480498572965 addons.manager DEBUG Provider finished startup: <unnamed-provider> | |
1480498572983 addons.manager DEBUG Starting provider: PreviousExperimentProvider | |
1480498572983 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider | |
1480498572984 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider | |
14804985 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment