Remove zealous match paren assertion. (r=dmandelin, b=613400)
[mozilla-central.git] / testing / testsuite-targets.mk
blob62e22dbf804bd6ae6a46658f958b72778da582d0
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
12 # License.
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.
21 # Contributor(s):
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=...'.
42 ifdef TEST_PATH
43 TEST_PATH_ARG := --test-path=$(TEST_PATH)
44 else
45 TEST_PATH_ARG :=
46 endif
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)
54 RUN_MOCHITEST = \
55 rm -f ./$@.log && \
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 \
64 echo "$@ failed:"; \
65 echo "$$errors"; \
66 exit 1; \
67 else \
68 echo "$@ passed"; \
70 endef
71 endif
73 mochitest-plain:
74 $(RUN_MOCHITEST)
75 $(CHECK_TEST_ERROR)
77 # Allow mochitest-1 ... mochitest-5 for developer ease
78 mochitest-1 mochitest-2 mochitest-3 mochitest-4 mochitest-5: mochitest-%:
79 echo "mochitest: $* / 5"
80 $(RUN_MOCHITEST) --chunk-by-dir=4 --total-chunks=5 --this-chunk=$*
81 $(CHECK_TEST_ERROR)
83 mochitest-chrome:
84 $(RUN_MOCHITEST) --chrome
85 $(CHECK_TEST_ERROR)
87 mochitest-a11y:
88 $(RUN_MOCHITEST) --a11y
89 $(CHECK_TEST_ERROR)
91 mochitest-ipcplugins:
92 ifeq (Darwin,$(OS_ARCH))
93 ifeq (i386,$(TARGET_CPU))
94 $(RUN_MOCHITEST) --setpref=dom.ipc.plugins.enabled.i386.test.plugin=true --test-path=modules/plugin/test
95 endif
96 ifeq (x86_64,$(TARGET_CPU))
97 $(RUN_MOCHITEST) --setpref=dom.ipc.plugins.enabled.x86_64.test.plugin=true --test-path=modules/plugin/test
98 endif
99 ifeq (powerpc,$(TARGET_CPU))
100 $(RUN_MOCHITEST) --setpref=dom.ipc.plugins.enabled.ppc.test.plugin=true --test-path=modules/plugin/test
101 endif
102 else
103 $(RUN_MOCHITEST) --setpref=dom.ipc.plugins.enabled=true --test-path=modules/plugin/test
104 endif
105 $(CHECK_TEST_ERROR)
107 # Usage: |make [EXTRA_TEST_ARGS=...] *test|.
108 RUN_REFTEST = rm -f ./$@.log && $(PYTHON) _tests/reftest/runreftest.py \
109 $(SYMBOLS_PATH) $(EXTRA_TEST_ARGS) $(1) | tee ./$@.log
111 reftest: TEST_PATH?=layout/reftests/reftest.list
112 reftest:
113 $(call RUN_REFTEST,$(topsrcdir)/$(TEST_PATH))
114 $(CHECK_TEST_ERROR)
116 crashtest: TEST_PATH?=testing/crashtest/crashtests.list
117 crashtest:
118 $(call RUN_REFTEST,$(topsrcdir)/$(TEST_PATH))
119 $(CHECK_TEST_ERROR)
121 jstestbrowser: TEST_PATH?=js/src/tests/jstests.list
122 jstestbrowser:
123 $(call RUN_REFTEST,$(topsrcdir)/$(TEST_PATH) --extra-profile-file=$(topsrcdir)/js/src/tests/user.js)
124 $(CHECK_TEST_ERROR)
126 GARBAGE += $(addsuffix .log,$(MOCHITESTS) reftest crashtest jstestbrowser)
128 # Execute all xpcshell tests in the directories listed in the manifest.
129 # See also config/rules.mk 'xpcshell-tests' target for local execution.
130 # Usage: |make [TEST_PATH=...] [EXTRA_TEST_ARGS=...] xpcshell-tests|.
131 xpcshell-tests:
132 $(PYTHON) -u $(topsrcdir)/config/pythonpath.py \
133 -I$(topsrcdir)/build \
134 $(topsrcdir)/testing/xpcshell/runxpcshelltests.py \
135 --manifest=$(DEPTH)/_tests/xpcshell/all-test-dirs.list \
136 --no-logfiles \
137 $(SYMBOLS_PATH) \
138 $(TEST_PATH_ARG) $(EXTRA_TEST_ARGS) \
139 $(DIST)/bin/xpcshell
141 # Package up the tests and test harnesses
142 include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk
144 ifndef UNIVERSAL_BINARY
145 PKG_STAGE = $(DIST)/test-package-stage
146 package-tests: stage-mochitest stage-reftest stage-xpcshell stage-jstests stage-mozmill stage-jetpack
147 else
148 # This staging area has been built for us by universal/flight.mk
149 PKG_STAGE = $(DIST)/universal/test-package-stage
150 endif
152 package-tests:
153 @rm -f "$(DIST)/$(PKG_PATH)$(TEST_PACKAGE)"
154 ifndef UNIVERSAL_BINARY
155 $(NSINSTALL) -D $(DIST)/$(PKG_PATH)
156 else
157 #building tests.jar (bug 543800) fails on unify, so we build tests.jar after unify is run
158 $(MAKE) -C $(DEPTH)/testing/mochitest stage-chromejar PKG_STAGE=$(DIST)/universal
159 endif
160 cd $(PKG_STAGE) && \
161 zip -r9D "$(call core_abspath,$(DIST)/$(PKG_PATH)$(TEST_PACKAGE))" *
163 ifeq (Android, $(OS_TARGET))
164 package-tests: stage-android
165 endif
167 make-stage-dir:
168 rm -rf $(PKG_STAGE) && $(NSINSTALL) -D $(PKG_STAGE) && $(NSINSTALL) -D $(PKG_STAGE)/bin && $(NSINSTALL) -D $(PKG_STAGE)/bin/components && $(NSINSTALL) -D $(PKG_STAGE)/certs && $(NSINSTALL) -D $(PKG_STAGE)/jetpack
170 stage-mochitest: make-stage-dir
171 $(MAKE) -C $(DEPTH)/testing/mochitest stage-package
173 stage-reftest: make-stage-dir
174 $(MAKE) -C $(DEPTH)/layout/tools/reftest stage-package
176 stage-xpcshell: make-stage-dir
177 $(MAKE) -C $(DEPTH)/testing/xpcshell stage-package
179 stage-jstests: make-stage-dir
180 $(MAKE) -C $(DEPTH)/js/src/tests stage-package
182 stage-mozmill: make-stage-dir
183 $(MAKE) -C $(DEPTH)/testing/mozmill stage-package
185 stage-android: make-stage-dir
186 $(NSINSTALL) $(DEPTH)/build/mobile/sutagent/android/sutAgentAndroid.apk $(PKG_STAGE)/bin
188 stage-jetpack: make-stage-dir
189 $(NSINSTALL) $(topsrcdir)/testing/jetpack/jetpack-location.txt $(PKG_STAGE)/jetpack
190 .PHONY: \
191 mochitest mochitest-plain mochitest-chrome mochitest-a11y mochitest-ipcplugins \
192 reftest crashtest \
193 xpcshell-tests \
194 jstestbrowser \
195 package-tests make-stage-dir stage-mochitest stage-reftest stage-xpcshell stage-jstests stage-mozmill stage-android stage-jetpack