mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
612630dd35
Several years ago there was a single zip file for all test files. Clients would only extract the files they needed. Thus, zip was a reasonable archive format because it allowed direct access to members without having to decompress the entirety of the stream. We have since split up that monolithic archive into separate, domain-specific archives. e.g. 1 archive for mochitests and one for xpcshell tests. This drastically cut down on network I/O required on testers because they only fetched archives/data that was relevant. It also enabled parallel generation of test archives, we shaved dozens of seconds off builds due to compression being a long pole. Despite the architectural changes to test archive management, we still used zip files. This is not ideal because we no longer access specific files in test archives and thus don't care about single/partial member access performance. This commit implements support for generating tar.gz test archives. And it switches the web-platform archive to a tar.gz file. The performance implications for archive generation are significant: before: 48,321,250 bytes; 6.05s after: 31,844,267 bytes; 4.57s The size is reduced because we have a single compression context so data from 1 file can benefit compression in a subsequent file. CPU usage is reduced because the compressor has to work less with 1 context than it does with N. While I didn't measure it, decompression performance should also be improved for the same reasons. And of course network I/O will be reduced. mozharness consumers use a generic method for handling unarchiving. This method automagically handles multiple file extensions. So as long as downstream consumers aren't hard coding ".zip" this change should "just work." MozReview-Commit-ID: LQa5MIHLsms --HG-- extra : rebase_source : 100092c2f2ff609362a724fff60f46dd6e49c94e extra : intermediate-source : d10f5ccd882b965fcad39914f7c3c930d1301a41 extra : source : a0e257e346ccf3c1db332ec5903241f4eeb9a7ee
295 lines
9.5 KiB
Makefile
295 lines
9.5 KiB
Makefile
# 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/.
|
|
|
|
# include automation-build.mk to get the path to the binary
|
|
TARGET_DEPTH = $(DEPTH)
|
|
include $(topsrcdir)/build/binary-location.mk
|
|
|
|
SYMBOLS_PATH := --symbols-path=$(DIST)/crashreporter-symbols
|
|
|
|
ifndef TEST_PACKAGE_NAME
|
|
TEST_PACKAGE_NAME := $(ANDROID_PACKAGE_NAME)
|
|
endif
|
|
|
|
ifndef NO_FAIL_ON_TEST_ERRORS
|
|
define check_test_error_internal
|
|
@errors=`grep 'TEST-UNEXPECTED-' $@.log` ;\
|
|
if test "$$errors" ; then \
|
|
echo '$@ failed:'; \
|
|
echo "$$errors"; \
|
|
$(if $(1),echo $(1);) \
|
|
exit 1; \
|
|
fi
|
|
endef
|
|
CHECK_TEST_ERROR = $(call check_test_error_internal)
|
|
CHECK_TEST_ERROR_RERUN = $(call check_test_error_internal,'To rerun your failures please run "make $@-rerun-failures"')
|
|
endif
|
|
|
|
# Usage: |make [EXTRA_TEST_ARGS=...] *test|.
|
|
RUN_REFTEST = rm -f ./$@.log && $(PYTHON) _tests/reftest/runreftest.py \
|
|
--extra-profile-file=$(DIST)/plugins \
|
|
$(SYMBOLS_PATH) $(EXTRA_TEST_ARGS) $(1) | tee ./$@.log
|
|
|
|
REMOTE_REFTEST = rm -f ./$@.log && $(PYTHON) _tests/reftest/remotereftest.py \
|
|
--ignore-window-size \
|
|
--app=$(TEST_PACKAGE_NAME) --deviceIP=${TEST_DEVICE} --xre-path=${MOZ_HOST_BIN} \
|
|
--httpd-path=_tests/modules --suite reftest \
|
|
--extra-profile-file=$(topsrcdir)/mobile/android/fonts \
|
|
$(SYMBOLS_PATH) $(EXTRA_TEST_ARGS) $(1) | tee ./$@.log
|
|
|
|
ifeq ($(OS_ARCH),WINNT) #{
|
|
# GPU-rendered shadow layers are unsupported here
|
|
OOP_CONTENT = --setpref=layers.async-pan-zoom.enabled=true --setpref=browser.tabs.remote.autostart=true --setpref=layers.acceleration.disabled=true
|
|
GPU_RENDERING =
|
|
else
|
|
OOP_CONTENT = --setpref=layers.async-pan-zoom.enabled=true --setpref=browser.tabs.remote.autostart=true
|
|
GPU_RENDERING = --setpref=layers.acceleration.force-enabled=true
|
|
endif #}
|
|
|
|
reftest: TEST_PATH?=layout/reftests/reftest.list
|
|
reftest:
|
|
$(call RUN_REFTEST,'$(topsrcdir)/$(TEST_PATH)')
|
|
$(CHECK_TEST_ERROR)
|
|
|
|
reftest-remote: TEST_PATH?=layout/reftests/reftest.list
|
|
reftest-remote:
|
|
@if [ '${MOZ_HOST_BIN}' = '' ]; then \
|
|
echo 'environment variable MOZ_HOST_BIN must be set to a directory containing host xpcshell'; \
|
|
elif [ ! -d ${MOZ_HOST_BIN} ]; then \
|
|
echo 'MOZ_HOST_BIN does not specify a directory'; \
|
|
elif [ ! -f ${MOZ_HOST_BIN}/xpcshell ]; then \
|
|
echo 'xpcshell not found in MOZ_HOST_BIN'; \
|
|
else \
|
|
ln -s $(abspath $(topsrcdir)) _tests/reftest/tests; \
|
|
$(call REMOTE_REFTEST,'tests/$(TEST_PATH)'); \
|
|
$(CHECK_TEST_ERROR); \
|
|
fi
|
|
|
|
crashtest: TEST_PATH?=testing/crashtest/crashtests.list
|
|
crashtest:
|
|
$(call RUN_REFTEST,'$(topsrcdir)/$(TEST_PATH)')
|
|
$(CHECK_TEST_ERROR)
|
|
|
|
jstestbrowser: TESTS_PATH?=test-stage/jsreftest/tests/
|
|
jstestbrowser:
|
|
$(MAKE) -C $(DEPTH)/config
|
|
$(MAKE) stage-jstests
|
|
$(call RUN_REFTEST,'$(DIST)/$(TESTS_PATH)/jstests.list' --extra-profile-file=$(DIST)/test-stage/jsreftest/tests/user.js)
|
|
$(CHECK_TEST_ERROR)
|
|
|
|
GARBAGE += $(addsuffix .log,$(MOCHITESTS) reftest crashtest jstestbrowser)
|
|
|
|
REMOTE_CPPUNITTESTS = \
|
|
$(PYTHON) -u $(topsrcdir)/testing/remotecppunittests.py \
|
|
--xre-path=$(DEPTH)/dist/bin \
|
|
--localLib=$(DEPTH)/dist/fennec \
|
|
--deviceIP=${TEST_DEVICE} \
|
|
$(TEST_PATH) $(EXTRA_TEST_ARGS)
|
|
|
|
# Usage: |make [TEST_PATH=...] [EXTRA_TEST_ARGS=...] cppunittests-remote|.
|
|
cppunittests-remote:
|
|
$(call REMOTE_CPPUNITTESTS);
|
|
|
|
jetpack-tests:
|
|
cd $(topsrcdir)/addon-sdk/source && $(PYTHON) bin/cfx -b $(abspath $(browser_path)) --parseable testpkgs
|
|
|
|
pgo-profile-run:
|
|
$(PYTHON) $(topsrcdir)/build/pgo/profileserver.py $(EXTRA_TEST_ARGS)
|
|
|
|
# Package up the tests and test harnesses
|
|
include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk
|
|
|
|
PKG_STAGE = $(DIST)/test-stage
|
|
|
|
stage-all: \
|
|
stage-config \
|
|
stage-mach \
|
|
stage-extensions \
|
|
stage-mochitest \
|
|
stage-jstests \
|
|
stage-jetpack \
|
|
test-packages-manifest \
|
|
$(NULL)
|
|
ifdef MOZ_WEBRTC
|
|
stage-all: stage-steeplechase
|
|
endif
|
|
|
|
ifdef COMPILE_ENVIRONMENT
|
|
stage-all: stage-cppunittests
|
|
endif
|
|
|
|
TEST_PKGS_ZIP := \
|
|
common \
|
|
cppunittest \
|
|
mochitest \
|
|
reftest \
|
|
talos \
|
|
awsy \
|
|
xpcshell \
|
|
$(NULL)
|
|
|
|
TEST_PKGS_TARGZ := \
|
|
web-platform \
|
|
$(NULL)
|
|
|
|
ifdef LINK_GTEST_DURING_COMPILE
|
|
stage-all: stage-gtest
|
|
TEST_PKGS_ZIP += gtest
|
|
endif
|
|
|
|
PKG_ARG = --$(1) '$(PKG_BASENAME).$(1).tests.$(2)'
|
|
|
|
test-packages-manifest:
|
|
@rm -f $(MOZ_TEST_PACKAGES_FILE)
|
|
$(NSINSTALL) -D $(dir $(MOZ_TEST_PACKAGES_FILE))
|
|
$(PYTHON) $(topsrcdir)/build/gen_test_packages_manifest.py \
|
|
--jsshell $(JSSHELL_NAME) \
|
|
--dest-file '$(MOZ_TEST_PACKAGES_FILE)' \
|
|
$(call PKG_ARG,common,zip) \
|
|
$(foreach pkg,$(TEST_PKGS_ZIP),$(call PKG_ARG,$(pkg),zip)) \
|
|
$(foreach pkg,$(TEST_PKGS_TARGZ),$(call PKG_ARG,$(pkg),tar.gz))
|
|
|
|
package-tests-prepare-dest:
|
|
@rm -f '$(DIST)/$(PKG_PATH)$(TEST_PACKAGE)'
|
|
$(NSINSTALL) -D $(DIST)/$(PKG_PATH)
|
|
|
|
define package_archive
|
|
package-tests-$(1): stage-all package-tests-prepare-dest
|
|
$$(call py_action,test_archive, \
|
|
$(1) \
|
|
'$$(abspath $$(DIST))/$$(PKG_PATH)/$$(PKG_BASENAME).$(1).tests.$(2)')
|
|
package-tests: package-tests-$(1)
|
|
endef
|
|
|
|
$(foreach name,$(TEST_PKGS_ZIP),$(eval $(call package_archive,$(name),zip)))
|
|
$(foreach name,$(TEST_PKGS_TARGZ),$(eval $(call package_archive,$(name),tar.gz)))
|
|
|
|
ifeq ($(MOZ_BUILD_APP),mobile/android)
|
|
stage-all: stage-android
|
|
stage-all: stage-instrumentation-tests
|
|
endif
|
|
|
|
# Prepare _tests before any of the other staging/packaging steps.
|
|
# make-stage-dir is a prerequisite to all the stage-* targets in testsuite-targets.mk.
|
|
make-stage-dir: install-test-files
|
|
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)/config
|
|
$(NSINSTALL) -D $(PKG_STAGE)/jetpack
|
|
$(NSINSTALL) -D $(PKG_STAGE)/modules
|
|
$(NSINSTALL) -D $(PKG_STAGE)/tools/mach
|
|
|
|
stage-config: make-stage-dir
|
|
$(NSINSTALL) -D $(PKG_STAGE)/config
|
|
@(cd $(topsrcdir)/testing/config && tar $(TAR_CREATE_FLAGS) - *) | (cd $(PKG_STAGE)/config && tar -xf -)
|
|
|
|
stage-mach: make-stage-dir
|
|
@(cd $(topsrcdir)/python/mach && tar $(TAR_CREATE_FLAGS) - *) | (cd $(PKG_STAGE)/tools/mach && tar -xf -)
|
|
cp $(topsrcdir)/testing/tools/mach_test_package_bootstrap.py $(PKG_STAGE)/tools/mach_bootstrap.py
|
|
cp $(topsrcdir)/mach $(PKG_STAGE)
|
|
|
|
stage-mochitest: make-stage-dir
|
|
ifeq ($(MOZ_BUILD_APP),mobile/android)
|
|
$(MAKE) -C $(DEPTH)/testing/mochitest stage-package
|
|
endif
|
|
|
|
stage-jstests: make-stage-dir
|
|
$(MAKE) -C $(DEPTH)/js/src/tests stage-package
|
|
|
|
ifdef OBJCOPY
|
|
ifneq ($(OBJCOPY), :) # see build/autoconf/toolchain.m4:102 for why this is necessary
|
|
ifndef PKG_SKIP_STRIP
|
|
STRIP_COMPILED_TESTS := 1
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
stage-gtest: make-stage-dir
|
|
$(NSINSTALL) -D $(PKG_STAGE)/gtest/gtest_bin/gtest
|
|
ifdef STRIP_COMPILED_TESTS
|
|
# The libxul file basename will vary per platform. Fortunately
|
|
# dependentlibs.list always lists the library name as its final line, so we
|
|
# can get the value from there.
|
|
LIBXUL_BASE=`tail -1 $(DIST)/bin/dependentlibs.list` && \
|
|
$(OBJCOPY) $(or $(STRIP_FLAGS),--strip-unneeded) \
|
|
$(DIST)/bin/gtest/$$LIBXUL_BASE $(PKG_STAGE)/gtest/gtest_bin/gtest/$$LIBXUL_BASE
|
|
else
|
|
cp -RL $(DIST)/bin/gtest $(PKG_STAGE)/gtest/gtest_bin
|
|
endif
|
|
cp -RL $(DEPTH)/_tests/gtest $(PKG_STAGE)
|
|
cp $(topsrcdir)/testing/gtest/rungtests.py $(PKG_STAGE)/gtest
|
|
cp $(DIST)/bin/dependentlibs.list.gtest $(PKG_STAGE)/gtest
|
|
cp $(DEPTH)/mozinfo.json $(PKG_STAGE)/gtest
|
|
|
|
stage-android: make-stage-dir
|
|
$(NSINSTALL) $(topsrcdir)/mobile/android/fonts $(DEPTH)/_tests/reftest
|
|
$(NSINSTALL) $(topsrcdir)/mobile/android/fonts $(DEPTH)/_tests/testing/mochitest
|
|
|
|
stage-jetpack: make-stage-dir
|
|
$(MAKE) -C $(DEPTH)/addon-sdk stage-tests-package
|
|
|
|
CPP_UNIT_TEST_BINS=$(wildcard $(DIST)/cppunittests/*)
|
|
|
|
stage-cppunittests: make-stage-dir
|
|
$(NSINSTALL) -D $(PKG_STAGE)/cppunittest
|
|
ifdef STRIP_COMPILED_TESTS
|
|
$(foreach bin,$(CPP_UNIT_TEST_BINS),$(OBJCOPY) $(or $(STRIP_FLAGS),--strip-unneeded) $(bin) $(bin:$(DIST)/cppunittests/%=$(PKG_STAGE)/cppunittest/%);)
|
|
else
|
|
cp -RL $(CPP_UNIT_TEST_BINS) $(PKG_STAGE)/cppunittest
|
|
endif
|
|
ifdef STRIP_COMPILED_TESTS
|
|
$(OBJCOPY) $(or $(STRIP_FLAGS),--strip-unneeded) $(DIST)/bin/jsapi-tests$(BIN_SUFFIX) $(PKG_STAGE)/cppunittest/jsapi-tests$(BIN_SUFFIX)
|
|
else
|
|
cp -RL $(DIST)/bin/jsapi-tests$(BIN_SUFFIX) $(PKG_STAGE)/cppunittest
|
|
endif
|
|
|
|
stage-steeplechase: make-stage-dir
|
|
$(NSINSTALL) -D $(PKG_STAGE)/steeplechase/
|
|
cp -RL $(DEPTH)/_tests/steeplechase $(PKG_STAGE)/steeplechase/tests
|
|
cp -RL $(DIST)/xpi-stage/specialpowers $(PKG_STAGE)/steeplechase
|
|
cp -RL $(topsrcdir)/testing/profiles/prefs_general.js $(PKG_STAGE)/steeplechase
|
|
|
|
stage-instrumentation-tests: make-stage-dir
|
|
$(MAKE) -C $(DEPTH)/testing/instrumentation stage-package
|
|
|
|
TEST_EXTENSIONS := \
|
|
specialpowers@mozilla.org.xpi \
|
|
$(NULL)
|
|
|
|
stage-extensions: make-stage-dir
|
|
$(NSINSTALL) -D $(PKG_STAGE)/extensions/
|
|
@$(foreach ext,$(TEST_EXTENSIONS), cp -RL $(DIST)/xpi-stage/$(ext) $(PKG_STAGE)/extensions;)
|
|
|
|
|
|
check::
|
|
$(eval cores=$(shell $(PYTHON) -c 'import multiprocessing; print(multiprocessing.cpu_count())'))
|
|
@echo "Starting 'mach python-test' with -j$(cores)"
|
|
@$(topsrcdir)/mach --log-no-times python-test -j$(cores) --subsuite default
|
|
@echo "Finished 'mach python-test' successfully"
|
|
|
|
|
|
.PHONY: \
|
|
reftest \
|
|
crashtest \
|
|
xpcshell-tests \
|
|
jstestbrowser \
|
|
package-tests \
|
|
package-tests-prepare-dest \
|
|
package-tests-common \
|
|
make-stage-dir \
|
|
stage-all \
|
|
stage-config \
|
|
stage-mochitest \
|
|
stage-jstests \
|
|
stage-android \
|
|
stage-jetpack \
|
|
stage-steeplechase \
|
|
stage-instrumentation-tests \
|
|
test-packages-manifest \
|
|
check \
|
|
$(NULL)
|