js/src/tests/Makefile.in

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 # vim: set shiftwidth=8 tabstop=8 autoindent noexpandtab copyindent:
michael@0 2 # This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 # License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
michael@0 5
michael@0 6 include $(topsrcdir)/config/rules.mk
michael@0 7
michael@0 8 # test files to be packaged.
michael@0 9 TEST_FILES = \
michael@0 10 jsreftest.html \
michael@0 11 shell.js \
michael@0 12 browser.js \
michael@0 13 js-test-driver-end.js \
michael@0 14 user.js \
michael@0 15 ecma/ \
michael@0 16 ecma_2/ \
michael@0 17 ecma_3/ \
michael@0 18 ecma_3_1/ \
michael@0 19 ecma_5/ \
michael@0 20 ecma_6/ \
michael@0 21 Intl/ \
michael@0 22 js1_1/ \
michael@0 23 js1_2/ \
michael@0 24 js1_3/ \
michael@0 25 js1_4/ \
michael@0 26 js1_5/ \
michael@0 27 js1_6/ \
michael@0 28 js1_7/ \
michael@0 29 js1_8/ \
michael@0 30 js1_8_1/ \
michael@0 31 js1_8_5/ \
michael@0 32 test262/ \
michael@0 33 $(NULL)
michael@0 34
michael@0 35 PKG_STAGE = $(DIST)/test-package-stage
michael@0 36
michael@0 37 # stage tests for packaging
michael@0 38 stage-package:
michael@0 39 $(NSINSTALL) -D $(PKG_STAGE)/jsreftest/tests
michael@0 40 (cd $(srcdir) && tar $(TAR_CREATE_FLAGS) - $(TEST_FILES)) | (cd $(PKG_STAGE)/jsreftest/tests && tar -xf -)
michael@0 41 $(PYTHON) $(srcdir)/jstests.py --make-manifests $(PKG_STAGE)/jsreftest/tests/

mercurial