mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
31 lines
893 B
Makefile
31 lines
893 B
Makefile
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
# OOP tests don't work on Windows (bug 763081) or native-fennec
|
|
# (see Bug 774939). App permission checks are also disabled on
|
|
# anything but B2G (Bug 900707).
|
|
ifdef MOZ_CHILD_PERMISSIONS
|
|
MOCHITEST_FILES += \
|
|
test_messagemanager_assertpermission.html \
|
|
test_child_process_shutdown_message.html \
|
|
$(NULL)
|
|
endif
|
|
|
|
# This test fails on the Mac for some reason
|
|
ifneq (,$(filter gtk2 gtk3 windows,$(MOZ_WIDGET_TOOLKIT)))
|
|
MOCHITEST_FILES += \
|
|
test_copyimage.html \
|
|
$(NULL)
|
|
endif
|
|
|
|
# Disabled for now. Mochitest isn't reliable enough for these.
|
|
# test_bug444546.html \
|
|
# bug444546.sjs \
|
|
|
|
# Disabled due to making the harness time out
|
|
# test_bug503473.html \
|
|
# file_bug503473-frame.sjs \
|
|
|