mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
99 lines
2.7 KiB
Makefile
99 lines
2.7 KiB
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/.
|
|
|
|
DEPTH = ../../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
relativesrcdir = toolkit/components/passwordmgr/test
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
ifneq (mobile,$(MOZ_BUILD_APP))
|
|
DIRS = \
|
|
browser \
|
|
$(NULL)
|
|
endif
|
|
|
|
# Module name for xpcshell tests.
|
|
MODULE = test_passwordmgr
|
|
XPCSHELL_TESTS = unit
|
|
|
|
# Mochitest tests
|
|
MOCHI_TESTS = \
|
|
test_basic_form.html \
|
|
test_basic_form_html5.html \
|
|
test_basic_form_2.html \
|
|
test_basic_form_0pw.html \
|
|
test_basic_form_1pw.html \
|
|
test_basic_form_1pw_2.html \
|
|
test_basic_form_2pw_1.html \
|
|
test_basic_form_2pw_2.html \
|
|
test_basic_form_3pw_1.html \
|
|
test_basic_form_autocomplete.html \
|
|
test_basic_form_observer_autofillForms.html \
|
|
test_basic_form_observer_autocomplete.html \
|
|
test_basic_form_observer_foundLogins.html \
|
|
test_basic_form_pwonly.html \
|
|
test_bug_227640.html \
|
|
test_bug_242956.html \
|
|
test_bug_360493_1.html \
|
|
test_bug_360493_2.html \
|
|
test_bug_391514.html \
|
|
test_bug_427033.html \
|
|
test_bug_444968.html \
|
|
test_bug_627616.html \
|
|
test_master_password.html \
|
|
test_master_password_cleanup.html \
|
|
test_maxforms_1.html \
|
|
test_maxforms_2.html \
|
|
test_maxforms_3.html \
|
|
test_notifications.html \
|
|
test_privbrowsing.html \
|
|
test_prompt_async.html \
|
|
test_xhr.html \
|
|
test_xml_load.html \
|
|
test_zzz_finish.html \
|
|
$(NULL)
|
|
|
|
MOCHI_CONTENT = \
|
|
pwmgr_common.js \
|
|
prompt_common.js \
|
|
notification_common.js \
|
|
authenticate.sjs \
|
|
formsubmit.sjs \
|
|
subtst_privbrowsing_1.html \
|
|
subtst_privbrowsing_2.html \
|
|
subtst_privbrowsing_3.html \
|
|
subtst_privbrowsing_4.html \
|
|
subtst_master_pass.html \
|
|
subtst_notifications_1.html \
|
|
subtst_notifications_2.html \
|
|
subtst_notifications_3.html \
|
|
subtst_notifications_4.html \
|
|
subtst_notifications_5.html \
|
|
subtst_notifications_6.html \
|
|
subtst_notifications_7.html \
|
|
subtst_notifications_8.html \
|
|
subtst_notifications_9.html \
|
|
subtst_notifications_10.html \
|
|
subtst_prompt_async.html \
|
|
$(NULL)
|
|
|
|
ifneq ($(OS_TARGET),Linux)
|
|
MOCHI_TESTS += \
|
|
test_prompt.html \
|
|
$(NULL)
|
|
endif
|
|
|
|
# This test doesn't pass because we can't ensure a cross-platform
|
|
# event that occurs between DOMContentLoaded and Pageload
|
|
# test_bug_221634.html
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
libs:: $(MOCHI_TESTS) $(MOCHI_CONTENT)
|
|
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)
|