From af783b2cb8e733215d3f8571fb3793dc2139ce42 Mon Sep 17 00:00:00 2001 From: Henrik Skupin Date: Wed, 2 Jan 2019 11:26:06 +0100 Subject: [PATCH] Bug 1504201 - [marionette] Temporarily skip TestScreenCaptureChrome.test_formats on Linux. r=whimboo --- .../harness/marionette_harness/tests/unit/test_screenshot.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/testing/marionette/harness/marionette_harness/tests/unit/test_screenshot.py b/testing/marionette/harness/marionette_harness/tests/unit/test_screenshot.py index afb2d929404e..b7ab7a5bf1b9 100644 --- a/testing/marionette/harness/marionette_harness/tests/unit/test_screenshot.py +++ b/testing/marionette/harness/marionette_harness/tests/unit/test_screenshot.py @@ -8,7 +8,9 @@ import base64 import hashlib import imghdr import struct +import sys import tempfile +import unittest import urllib from marionette_driver import By @@ -205,6 +207,7 @@ class TestScreenCaptureChrome(WindowManagerMixin, ScreenCaptureTestCase): self.marionette.switch_to_window(self.start_window) @skip_if_mobile("Fennec doesn't support other chrome windows") + @unittest.skipIf(sys.platform.startswith("linux"), "Bug 1504201") def test_formats(self): dialog = self.open_dialog() self.marionette.switch_to_window(dialog)