1 # ***** BEGIN LICENSE BLOCK *****
2 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 # The contents of this file are subject to the Mozilla Public License Version
5 # 1.1 (the "License"); you may not use this file except in compliance with
6 # the License. You may obtain a copy of the License at
7 # http://www.mozilla.org/MPL/
9 # Software distributed under the License is distributed on an "AS IS" basis,
10 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 # for the specific language governing rights and limitations under the
14 # The Original Code is Mozilla Test Harnesses
16 # The Initial Developer of the Original Code is
17 # The Mozilla Foundation
18 # Portions created by the Initial Developer are Copyright (C) 2008
19 # the Initial Developer. All Rights Reserved.
22 # Serge Gautherie <sgautherie.bz@free.fr>
23 # Ted Mielczarek <ted.mielczarek@gmail.com>
25 # Alternatively, the contents of this file may be used under the terms of
26 # either of the GNU General Public License Version 2 or later (the "GPL"),
27 # or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 # in which case the provisions of the GPL or the LGPL are applicable instead
29 # of those above. If you wish to allow use of your version of this file only
30 # under the terms of either the GPL or the LGPL, and not to allow others to
31 # use your version of this file under the terms of the MPL, indicate your
32 # decision by deleting the provisions above and replace them with the notice
33 # and other provisions required by the GPL or the LGPL. If you do not delete
34 # the provisions above, a recipient may use your version of this file under
35 # the terms of any one of the MPL, the GPL or the LGPL.
37 # ***** END LICENSE BLOCK *****
40 # Shortcut for mochitest* and xpcshell-tests targets,
41 # replaces 'EXTRA_TEST_ARGS=--test-path=...'.
43 TEST_PATH_ARG
:= --test-path
=$(TEST_PATH
)
48 SYMBOLS_PATH
:= --symbols-path
=$(DIST
)/crashreporter-symbols
50 # Usage: |make [TEST_PATH=...] [EXTRA_TEST_ARGS=...] mochitest*|.
51 MOCHITESTS
:= mochitest-plain mochitest-chrome mochitest-a11y mochitest-ipcplugins
52 mochitest
:: $(MOCHITESTS
)
56 $(PYTHON
) _tests
/testing
/mochitest
/runtests.py
--autorun
--close-when-done \
57 --console-level
=INFO
--log-file
=.
/$@.log
--file-level
=INFO \
58 $(SYMBOLS_PATH
) $(TEST_PATH_ARG
) $(EXTRA_TEST_ARGS
)
60 ifndef NO_FAIL_ON_TEST_ERRORS
61 define CHECK_TEST_ERROR
62 @errors
=`grep "TEST-UNEXPECTED-" $@.log` ;\
63 if
test "$$errors" ; then \
78 $(RUN_MOCHITEST
) --chrome
82 $(RUN_MOCHITEST
) --a11y
86 $(RUN_MOCHITEST
) --setpref
=dom.ipc.plugins.enabled
=true
--test-path
=modules
/plugin
/test
89 # Usage: |make [EXTRA_TEST_ARGS=...] *test|.
90 RUN_REFTEST
= rm -f .
/$@.log
&& $(PYTHON
) _tests
/reftest
/runreftest.py \
91 $(SYMBOLS_PATH
) $(EXTRA_TEST_ARGS
) $(1) | tee .
/$@.log
93 reftest
: TEST_PATH
=layout
/reftests
/reftest.list
95 $(call RUN_REFTEST
,$(topsrcdir
)/$(TEST_PATH
))
98 crashtest
: TEST_PATH
=testing
/crashtest
/crashtests.list
100 $(call RUN_REFTEST
,$(topsrcdir
)/$(TEST_PATH
))
103 jstestbrowser
: TEST_PATH
=js
/src
/tests
/jstests.list
105 $(call RUN_REFTEST
,$(topsrcdir
)/$(TEST_PATH
) --extra-profile-file
=$(topsrcdir
)/js
/src
/tests
/user.js
)
108 GARBAGE
+= $(addsuffix .log
,$(MOCHITESTS
) reftest crashtest jstestbrowser
)
110 # Execute all xpcshell tests in the directories listed in the manifest.
111 # See also config/rules.mk 'xpcshell-tests' target for local execution.
112 # Usage: |make [TEST_PATH=...] [EXTRA_TEST_ARGS=...] xpcshell-tests|.
114 $(PYTHON
) -u
$(topsrcdir
)/config
/pythonpath.py \
115 -I
$(topsrcdir
)/build \
116 $(topsrcdir
)/testing
/xpcshell
/runxpcshelltests.py \
117 --manifest
=$(DEPTH
)/_tests
/xpcshell
/all-test-dirs.list \
120 $(TEST_PATH_ARG
) $(EXTRA_TEST_ARGS
) \
124 # Package up the tests and test harnesses
125 include $(topsrcdir
)/toolkit
/mozapps
/installer
/package-name.mk
127 ifndef UNIVERSAL_BINARY
128 PKG_STAGE
= $(DIST
)/test-package-stage
129 package-tests
: stage-mochitest stage-reftest stage-xpcshell stage-jstests
131 # This staging area has been built for us by universal/flight.mk
132 PKG_STAGE
= $(DIST
)/universal
/test-package-stage
136 $(NSINSTALL
) -D
$(DIST
)/$(PKG_PATH
)
137 @
rm -f
"$(DIST)/$(PKG_PATH)$(TEST_PACKAGE)"
139 zip
-r9D
"$(call core_abspath,$(DIST)/$(PKG_PATH)$(TEST_PACKAGE))" *
142 rm -rf
$(PKG_STAGE
) && $(NSINSTALL
) -D
$(PKG_STAGE
) && $(NSINSTALL
) -D
$(PKG_STAGE
)/bin
&& $(NSINSTALL
) -D
$(PKG_STAGE
)/bin
/components
&& $(NSINSTALL
) -D
$(PKG_STAGE
)/certs
144 stage-mochitest
: make-stage-dir
145 $(MAKE
) -C
$(DEPTH
)/testing
/mochitest stage-package
147 stage-reftest
: make-stage-dir
148 $(MAKE
) -C
$(DEPTH
)/layout
/tools
/reftest stage-package
150 stage-xpcshell
: make-stage-dir
151 $(MAKE
) -C
$(DEPTH
)/testing
/xpcshell stage-package
153 stage-jstests
: make-stage-dir
154 $(MAKE
) -C
$(DEPTH
)/js
/src
/tests stage-package
157 mochitest mochitest-plain mochitest-chrome mochitest-a11y mochitest-ipcplugins \
161 package-tests make-stage-dir stage-mochitest stage-reftest stage-xpcshell stage-jstests