Bug 629275 - Recent nightly kills Win7 Taskbar Jumplists/Tasks. r=rstrong, a=blocking...
[mozilla-central.git] / testing / testsuite-targets.mk
blobcf36ad77082374425a549516279f0a7cd590019a
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 # include automation-build.mk to get the path to the binary
49 TARGET_DEPTH = $(DEPTH)
50 include $(topsrcdir)/build/binary-location.mk
52 SYMBOLS_PATH := --symbols-path=$(DIST)/crashreporter-symbols
54 # Usage: |make [TEST_PATH=...] [EXTRA_TEST_ARGS=...] mochitest*|.
55 MOCHITESTS := mochitest-plain mochitest-chrome mochitest-a11y mochitest-ipcplugins
56 mochitest:: $(MOCHITESTS)
58 RUN_MOCHITEST = \
59 rm -f ./$@.log && \
60 $(PYTHON) _tests/testing/mochitest/runtests.py --autorun --close-when-done \
61 --console-level=INFO --log-file=./$@.log --file-level=INFO \
62 $(SYMBOLS_PATH) $(TEST_PATH_ARG) $(EXTRA_TEST_ARGS)
64 ifndef NO_FAIL_ON_TEST_ERRORS
65 define CHECK_TEST_ERROR
66 @errors=`grep "TEST-UNEXPECTED-" $@.log` ;\
67 if test "$$errors" ; then \
68 echo "$@ failed:"; \
69 echo "$$errors"; \
70 exit 1; \
71 else \
72 echo "$@ passed"; \
74 endef
75 endif
77 mochitest-plain:
78 $(RUN_MOCHITEST)
79 $(CHECK_TEST_ERROR)
81 # Allow mochitest-1 ... mochitest-5 for developer ease
82 mochitest-1 mochitest-2 mochitest-3 mochitest-4 mochitest-5: mochitest-%:
83 echo "mochitest: $* / 5"
84 $(RUN_MOCHITEST) --chunk-by-dir=4 --total-chunks=5 --this-chunk=$*
85 $(CHECK_TEST_ERROR)
87 mochitest-chrome:
88 $(RUN_MOCHITEST) --chrome
89 $(CHECK_TEST_ERROR)
91 mochitest-a11y:
92 $(RUN_MOCHITEST) --a11y
93 $(CHECK_TEST_ERROR)
95 mochitest-ipcplugins:
96 ifeq (Darwin,$(OS_ARCH))
97 ifeq (i386,$(TARGET_CPU))
98 $(RUN_MOCHITEST) --setpref=dom.ipc.plugins.enabled.i386.test.plugin=true --test-path=modules/plugin/test
99 endif
100 ifeq (x86_64,$(TARGET_CPU))
101 $(RUN_MOCHITEST) --setpref=dom.ipc.plugins.enabled.x86_64.test.plugin=true --test-path=modules/plugin/test
102 endif
103 ifeq (powerpc,$(TARGET_CPU))
104 $(RUN_MOCHITEST) --setpref=dom.ipc.plugins.enabled.ppc.test.plugin=true --test-path=modules/plugin/test
105 endif
106 else
107 $(RUN_MOCHITEST) --setpref=dom.ipc.plugins.enabled=true --test-path=modules/plugin/test
108 endif
109 $(CHECK_TEST_ERROR)
111 # Usage: |make [EXTRA_TEST_ARGS=...] *test|.
112 RUN_REFTEST = rm -f ./$@.log && $(PYTHON) _tests/reftest/runreftest.py \
113 $(SYMBOLS_PATH) $(EXTRA_TEST_ARGS) $(1) | tee ./$@.log
115 reftest: TEST_PATH?=layout/reftests/reftest.list
116 reftest:
117 $(call RUN_REFTEST,$(topsrcdir)/$(TEST_PATH))
118 $(CHECK_TEST_ERROR)
120 crashtest: TEST_PATH?=testing/crashtest/crashtests.list
121 crashtest:
122 $(call RUN_REFTEST,$(topsrcdir)/$(TEST_PATH))
123 $(CHECK_TEST_ERROR)
125 jstestbrowser: TEST_PATH?=js/src/tests/jstests.list
126 jstestbrowser:
127 $(call RUN_REFTEST,$(topsrcdir)/$(TEST_PATH) --extra-profile-file=$(topsrcdir)/js/src/tests/user.js)
128 $(CHECK_TEST_ERROR)
130 GARBAGE += $(addsuffix .log,$(MOCHITESTS) reftest crashtest jstestbrowser)
132 # Execute all xpcshell tests in the directories listed in the manifest.
133 # See also config/rules.mk 'xpcshell-tests' target for local execution.
134 # Usage: |make [TEST_PATH=...] [EXTRA_TEST_ARGS=...] xpcshell-tests|.
135 xpcshell-tests:
136 $(PYTHON) -u $(topsrcdir)/config/pythonpath.py \
137 -I$(topsrcdir)/build \
138 $(topsrcdir)/testing/xpcshell/runxpcshelltests.py \
139 --manifest=$(DEPTH)/_tests/xpcshell/all-test-dirs.list \
140 --no-logfiles \
141 $(SYMBOLS_PATH) \
142 $(TEST_PATH_ARG) $(EXTRA_TEST_ARGS) \
143 $(DIST)/bin/xpcshell
145 # install and run the mozmill tests
146 $(DEPTH)/_tests/mozmill:
147 $(MAKE) -C $(DEPTH)/testing/mozmill install-develop PKG_STAGE=../../_tests
148 $(PYTHON) $(topsrcdir)/testing/mozmill/installmozmill.py --develop $(DEPTH)/_tests/mozmill
150 MOZMILL_TEST_PATH = $(DEPTH)/_tests/mozmill/tests/firefox
151 mozmill: TEST_PATH?=$(MOZMILL_TEST_PATH)
152 mozmill: $(DEPTH)/_tests/mozmill
153 $(SHELL) $(DEPTH)/_tests/mozmill/mozmill.sh -t $(TEST_PATH) -b $(browser_path) --show-all
155 MOZMILL_RESTART_TEST_PATH = $(DEPTH)/_tests/mozmill/tests/firefox/restartTests
156 mozmill-restart: TEST_PATH?=$(MOZMILL_RESTART_TEST_PATH)
157 mozmill-restart: $(DEPTH)/_tests/mozmill
158 $(SHELL) $(DEPTH)/_tests/mozmill/mozmill-restart.sh -t $(TEST_PATH) -b $(browser_path) --show-all
160 # in order to have `mozmill-all` ignore TEST_PATH, if it is set, we shell out to call make
161 # again, verbosely overriding the TEST_PATH
162 # This isn't as neat as having mozmill and mozmill-restart be dependencies, but it
163 # seems to be the make idiom
164 mozmill-all:
165 $(MAKE) mozmill TEST_PATH=$(MOZMILL_TEST_PATH)
166 $(MAKE) mozmill-restart TEST_PATH=$(MOZMILL_RESTART_TEST_PATH)
168 # Package up the tests and test harnesses
169 include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk
171 ifndef UNIVERSAL_BINARY
172 PKG_STAGE = $(DIST)/test-package-stage
173 package-tests: stage-mochitest stage-reftest stage-xpcshell stage-jstests stage-mozmill stage-jetpack
174 else
175 # This staging area has been built for us by universal/flight.mk
176 PKG_STAGE = $(DIST)/universal/test-package-stage
177 endif
179 package-tests:
180 @rm -f "$(DIST)/$(PKG_PATH)$(TEST_PACKAGE)"
181 ifndef UNIVERSAL_BINARY
182 $(NSINSTALL) -D $(DIST)/$(PKG_PATH)
183 else
184 #building tests.jar (bug 543800) fails on unify, so we build tests.jar after unify is run
185 $(MAKE) -C $(DEPTH)/testing/mochitest stage-chromejar PKG_STAGE=$(DIST)/universal
186 endif
187 cd $(PKG_STAGE) && \
188 zip -r9D "$(call core_abspath,$(DIST)/$(PKG_PATH)$(TEST_PACKAGE))" *
190 ifeq (Android, $(OS_TARGET))
191 package-tests: stage-android
192 endif
194 make-stage-dir:
195 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
197 stage-mochitest: make-stage-dir
198 $(MAKE) -C $(DEPTH)/testing/mochitest stage-package
200 stage-reftest: make-stage-dir
201 $(MAKE) -C $(DEPTH)/layout/tools/reftest stage-package
203 stage-xpcshell: make-stage-dir
204 $(MAKE) -C $(DEPTH)/testing/xpcshell stage-package
206 stage-jstests: make-stage-dir
207 $(MAKE) -C $(DEPTH)/js/src/tests stage-package
209 stage-mozmill: make-stage-dir
210 $(MAKE) -C $(DEPTH)/testing/mozmill stage-package
212 stage-android: make-stage-dir
213 $(NSINSTALL) $(DEPTH)/build/mobile/sutagent/android/sutAgentAndroid.apk $(PKG_STAGE)/bin
215 stage-jetpack: make-stage-dir
216 $(NSINSTALL) $(topsrcdir)/testing/jetpack/jetpack-location.txt $(PKG_STAGE)/jetpack
217 .PHONY: \
218 mochitest mochitest-plain mochitest-chrome mochitest-a11y mochitest-ipcplugins \
219 reftest crashtest \
220 xpcshell-tests \
221 jstestbrowser \
222 package-tests make-stage-dir stage-mochitest stage-reftest stage-xpcshell stage-jstests stage-mozmill stage-android stage-jetpack