Makefile.in (840B)
1 # vim: set shiftwidth=8 tabstop=8 autoindent noexpandtab copyindent: 2 # This Source Code Form is subject to the terms of the Mozilla Public 3 # License, v. 2.0. If a copy of the MPL was not distributed with this 4 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 6 include $(topsrcdir)/config/rules.mk 7 8 # test files to be packaged. 9 TEST_FILES = \ 10 jsreftest.html \ 11 shell.js \ 12 browser.js \ 13 js-test-driver-end.js \ 14 user.js \ 15 non262/ \ 16 shell/ \ 17 test/ \ 18 test262/ \ 19 $(NULL) 20 21 PKG_STAGE = $(DIST)/test-stage 22 23 # stage tests for packaging 24 stage-package: 25 $(NSINSTALL) -D $(PKG_STAGE)/jsreftest/tests/js/src/tests 26 (cd $(srcdir) && tar $(TAR_CREATE_FLAGS) - $(TEST_FILES)) | (cd $(PKG_STAGE)/jsreftest/tests/js/src/tests && tar -xf -) 27 $(PYTHON3) $(srcdir)/jstests.py --make-manifests $(PKG_STAGE)/jsreftest/tests/js/src/tests