1# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2# vim: set filetype=python: 3# This Source Code Form is subject to the terms of the Mozilla Public 4# License, v. 2.0. If a copy of the MPL was not distributed with this 5# file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7with Files("**"): 8 BUG_COMPONENT = ("Testing", "Talos") 9 SCHEDULES.exclusive = ["talos"] 10 11with Files("talos/startup_test/sessionrestore/**"): 12 BUG_COMPONENT = ("Firefox", "Session Restore") 13 14with Files("talos/tests/tresize/**"): 15 BUG_COMPONENT = ("Core", "XUL") 16 17with Files("talos/tests/a11y/**"): 18 BUG_COMPONENT = ("Core", "Disability Access APIs") 19 20with Files("talos/tests/cpstartup/**"): 21 BUG_COMPONENT = ("Firefox", "Tabbed Browser") 22 23with Files("talos/tests/dromaeo/**"): 24 BUG_COMPONENT = ("Core", "DOM: Core & HTML") 25 26with Files("talos/tests/kraken/**"): 27 BUG_COMPONENT = ("Core", "JavaScript Engine") 28 29with Files("talos/tests/scroll/**"): 30 BUG_COMPONENT = ("Core", "Graphics") 31 32with Files("talos/tests/svg*"): 33 BUG_COMPONENT = ("Core", "SVG") 34 35with Files("talos/tests/tabpaint/**"): 36 BUG_COMPONENT = ("Firefox", "Tabbed Browser") 37 38with Files("talos/tests/tabswitch/**"): 39 BUG_COMPONENT = ("Firefox", "Tabbed Browser") 40 41with Files("talos/tests/tart/**"): 42 BUG_COMPONENT = ("Firefox", "Tabbed Browser") 43 44with Files("talos/tests/v8_7/**"): 45 BUG_COMPONENT = ("Core", "JavaScript Engine") 46 47with Files("talos/tests/video/**"): 48 BUG_COMPONENT = ("Core", "Audio/Video: Playback") 49 50with Files("talos/tests/webgl/**"): 51 BUG_COMPONENT = ("Core", "Canvas: WebGL") 52