diff --git a/b2g/components/test/mochitest/mochitest.ini b/b2g/components/test/mochitest/mochitest.ini index 88636640344..161358088a4 100644 --- a/b2g/components/test/mochitest/mochitest.ini +++ b/b2g/components/test/mochitest/mochitest.ini @@ -7,7 +7,6 @@ support-files = systemapp_helper.js [test_sandbox_permission.html] -skip-if = true # bug 984274 - frequent timeouts [test_filepicker_path.html] [test_permission_deny.html] [test_permission_gum_remember.html] diff --git a/b2g/config/emulator-ics/sources.xml b/b2g/config/emulator-ics/sources.xml index 5ca57254ad4..e00b01a781d 100644 --- a/b2g/config/emulator-ics/sources.xml +++ b/b2g/config/emulator-ics/sources.xml @@ -19,7 +19,7 @@ - + diff --git a/b2g/config/emulator-jb/sources.xml b/b2g/config/emulator-jb/sources.xml index c278d123af9..669197ca1b9 100644 --- a/b2g/config/emulator-jb/sources.xml +++ b/b2g/config/emulator-jb/sources.xml @@ -17,7 +17,7 @@ - + diff --git a/b2g/config/emulator-kk/sources.xml b/b2g/config/emulator-kk/sources.xml index 7a7f8179921..54ddcfe77b1 100644 --- a/b2g/config/emulator-kk/sources.xml +++ b/b2g/config/emulator-kk/sources.xml @@ -15,7 +15,7 @@ - + diff --git a/b2g/config/emulator/sources.xml b/b2g/config/emulator/sources.xml index 5ca57254ad4..e00b01a781d 100644 --- a/b2g/config/emulator/sources.xml +++ b/b2g/config/emulator/sources.xml @@ -19,7 +19,7 @@ - + diff --git a/b2g/config/flame/sources.xml b/b2g/config/flame/sources.xml index 5039a3e892a..bd125f4c081 100644 --- a/b2g/config/flame/sources.xml +++ b/b2g/config/flame/sources.xml @@ -17,7 +17,7 @@ - + diff --git a/b2g/config/gaia.json b/b2g/config/gaia.json index e2f5231bbc1..19c7cf787fa 100644 --- a/b2g/config/gaia.json +++ b/b2g/config/gaia.json @@ -4,6 +4,6 @@ "remote": "", "branch": "" }, - "revision": "d7e63029d487bfaba57940d36396d701ddc01655", + "revision": "db540afcf32e30144e33555a5d6ca860ff8cabc3", "repo_path": "/integration/gaia-central" } diff --git a/b2g/config/hamachi/sources.xml b/b2g/config/hamachi/sources.xml index c42d8b3fd6b..e4952dbf426 100644 --- a/b2g/config/hamachi/sources.xml +++ b/b2g/config/hamachi/sources.xml @@ -17,7 +17,7 @@ - + diff --git a/b2g/config/helix/sources.xml b/b2g/config/helix/sources.xml index 6f71d98154a..cbc32c1ad2c 100644 --- a/b2g/config/helix/sources.xml +++ b/b2g/config/helix/sources.xml @@ -15,7 +15,7 @@ - + diff --git a/b2g/config/nexus-4/sources.xml b/b2g/config/nexus-4/sources.xml index 4b2670e4a81..9abdb4ee833 100644 --- a/b2g/config/nexus-4/sources.xml +++ b/b2g/config/nexus-4/sources.xml @@ -17,7 +17,7 @@ - + diff --git a/b2g/config/wasabi/sources.xml b/b2g/config/wasabi/sources.xml index 07bf56d0619..58279ed3a9c 100644 --- a/b2g/config/wasabi/sources.xml +++ b/b2g/config/wasabi/sources.xml @@ -17,7 +17,7 @@ - + diff --git a/testing/mochitest/b2g_start_script.js b/testing/mochitest/b2g_start_script.js index 1e48999b021..6bc831af058 100644 --- a/testing/mochitest/b2g_start_script.js +++ b/testing/mochitest/b2g_start_script.js @@ -9,6 +9,8 @@ let wifiSettings = __marionetteParams[3] let prefs = Components.classes["@mozilla.org/preferences-service;1"]. getService(Components.interfaces.nsIPrefBranch) let settings = window.navigator.mozSettings; +let cm = Components.classes["@mozilla.org/categorymanager;1"]. + getService(Components.interfaces.nsICategoryManager); if (wifiSettings) wifiSettings = JSON.parse(wifiSettings); @@ -20,6 +22,12 @@ const CHILD_LOGGER_SCRIPT = "chrome://specialpowers/content/MozillaLogger.js"; let homescreen = document.getElementById('systemapp'); let container = homescreen.contentWindow.document.getElementById('test-container'); +// Disable udpate timers which cause failure in b2g permisson prompt tests. +if (cm) { + cm.deleteCategoryEntry("update-timer", "WebappsUpdateTimer", false); + cm.deleteCategoryEntry("update-timer", "nsUpdateService", false); +} + function openWindow(aEvent) { var popupIframe = aEvent.detail.frameElement; popupIframe.style = 'position: absolute; left: 0; top: 0px; background: white;';