2007-04-22 16:56:06 -07:00
|
|
|
#
|
2012-05-21 04:12:37 -07:00
|
|
|
# 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/.
|
2007-04-22 16:56:06 -07:00
|
|
|
|
2011-06-03 18:12:08 -07:00
|
|
|
DEPTH = ../../../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
relativesrcdir = toolkit/components/passwordmgr/test
|
2007-04-22 16:56:06 -07:00
|
|
|
|
2010-09-29 18:30:54 -07:00
|
|
|
include $(topsrcdir)/config/config.mk
|
2007-04-22 16:56:06 -07:00
|
|
|
|
2010-06-09 16:29:44 -07:00
|
|
|
ifneq (mobile,$(MOZ_BUILD_APP))
|
2009-04-22 22:57:10 -07:00
|
|
|
DIRS = \
|
2011-06-03 18:12:08 -07:00
|
|
|
browser \
|
|
|
|
$(NULL)
|
2010-05-27 13:01:37 -07:00
|
|
|
endif
|
2009-04-22 22:57:10 -07:00
|
|
|
|
2007-04-22 16:56:06 -07:00
|
|
|
# Module name for xpcshell tests.
|
2011-06-03 18:12:08 -07:00
|
|
|
MODULE = test_passwordmgr
|
|
|
|
XPCSHELL_TESTS = unit
|
2007-04-22 16:56:06 -07:00
|
|
|
|
2008-03-16 21:54:16 -07:00
|
|
|
# Mochitest tests
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES = \
|
2011-06-03 18:12:08 -07:00
|
|
|
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 \
|
2012-02-15 08:29:46 -08:00
|
|
|
test_bug_627616.html \
|
2011-06-03 18:12:08 -07:00
|
|
|
test_master_password.html \
|
|
|
|
test_master_password_cleanup.html \
|
2012-04-27 09:11:27 -07:00
|
|
|
test_maxforms_1.html \
|
|
|
|
test_maxforms_2.html \
|
|
|
|
test_maxforms_3.html \
|
2012-05-02 03:24:40 -07:00
|
|
|
test_notifications.html \
|
|
|
|
test_privbrowsing.html \
|
2011-06-03 18:12:08 -07:00
|
|
|
test_prompt_async.html \
|
|
|
|
test_xhr.html \
|
|
|
|
test_xml_load.html \
|
|
|
|
test_zzz_finish.html \
|
|
|
|
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)
|
2008-03-16 21:54:16 -07:00
|
|
|
|
2011-06-19 16:40:35 -07:00
|
|
|
ifneq ($(OS_TARGET),Linux)
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES += \
|
2011-06-19 16:40:35 -07:00
|
|
|
test_prompt.html \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
2010-09-28 00:46:48 -07:00
|
|
|
|
2007-04-22 20:27:28 -07:00
|
|
|
# This test doesn't pass because we can't ensure a cross-platform
|
|
|
|
# event that occurs between DOMContentLoaded and Pageload
|
|
|
|
# test_bug_221634.html
|
|
|
|
|
2007-04-22 16:56:06 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|