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 mochitest
:: mochitest-plain mochitest-chrome mochitest-a11y
55 $(PYTHON
) _tests
/testing
/mochitest
/runtests.py
--autorun
--close-when-done \
56 --console-level
=INFO
--log-file
=.
/$@.log
--file-level
=INFO \
57 $(SYMBOLS_PATH
) $(TEST_PATH_ARG
) $(EXTRA_TEST_ARGS
)
59 ifndef NO_FAIL_ON_TEST_ERRORS
60 define CHECK_TEST_ERROR
61 @errors
=`grep "TEST-UNEXPECTED-" $@.log` ;\
62 if
test "$$errors" ; then \
77 $(RUN_MOCHITEST
) --chrome
81 $(RUN_MOCHITEST
) --a11y
85 # Usage: |make [EXTRA_TEST_ARGS=...] *test|.
86 RUN_REFTEST
= rm -f .
/$@.log
&& $(PYTHON
) _tests
/reftest
/runreftest.py \
87 $(SYMBOLS_PATH
) $(EXTRA_TEST_ARGS
) $(1) | tee .
/$@.log
89 reftest
: TEST_PATH
=layout
/reftests
/reftest.list
91 $(call RUN_REFTEST
,$(topsrcdir
)/$(TEST_PATH
))
94 crashtest
: TEST_PATH
=testing
/crashtest
/crashtests.list
96 $(call RUN_REFTEST
,$(topsrcdir
)/$(TEST_PATH
))
99 jstestbrowser
: EXTRA_TEST_ARGS
+= --extra-profile-file
=$(topsrcdir
)/js
/src
/tests
/user.js
101 $(call RUN_REFTEST
,$(topsrcdir
)/js
/src
/tests
/jstests.list
)
104 # Execute all xpcshell tests in the directories listed in the manifest.
105 # See also config/rules.mk 'xpcshell-tests' target for local execution.
106 # Usage: |make [TEST_PATH=...] [EXTRA_TEST_ARGS=...] xpcshell-tests|.
108 $(PYTHON
) -u
$(topsrcdir
)/config
/pythonpath.py \
109 -I
$(topsrcdir
)/build \
110 $(topsrcdir
)/testing
/xpcshell
/runxpcshelltests.py \
111 --manifest
=$(DEPTH
)/_tests
/xpcshell
/all-test-dirs.list \
114 $(TEST_PATH_ARG
) $(EXTRA_TEST_ARGS
) \
118 # Package up the tests and test harnesses
119 include $(topsrcdir
)/toolkit
/mozapps
/installer
/package-name.mk
121 ifndef UNIVERSAL_BINARY
122 PKG_STAGE
= $(DIST
)/test-package-stage
123 package-tests
: stage-mochitest stage-reftest stage-xpcshell stage-jstests
125 # This staging area has been built for us by universal/flight.mk
126 PKG_STAGE
= $(DIST
)/universal
/test-package-stage
130 $(NSINSTALL
) -D
$(DIST
)/$(PKG_PATH
)
131 @
(cd
$(PKG_STAGE
) && tar $(TAR_CREATE_FLAGS
) - *) | bzip2
-f
> "$(DIST)/$(PKG_PATH)$(TEST_PACKAGE)"
134 rm -rf
$(PKG_STAGE
) && $(NSINSTALL
) -D
$(PKG_STAGE
) && $(NSINSTALL
) -D
$(PKG_STAGE
)/bin
&& $(NSINSTALL
) -D
$(PKG_STAGE
)/bin
/components
&& $(NSINSTALL
) -D
$(PKG_STAGE
)/certs
136 stage-mochitest
: make-stage-dir
137 $(MAKE
) -C
$(DEPTH
)/testing
/mochitest stage-package
139 stage-reftest
: make-stage-dir
140 $(MAKE
) -C
$(DEPTH
)/layout
/tools
/reftest stage-package
142 stage-xpcshell
: make-stage-dir
143 $(MAKE
) -C
$(DEPTH
)/testing
/xpcshell stage-package
145 stage-jstests
: make-stage-dir
146 $(MAKE
) -C
$(DEPTH
)/js
/src
/tests stage-package
149 mochitest mochitest-plain mochitest-chrome mochitest-a11y \
153 package-tests make-stage-dir stage-mochitest stage-reftest stage-xpcshell stage-jstests