b18a8ebcae
js/ui/environment.js: Split out initial UI setup (Tweener initialization, ClutterContainer monkey-patching) into a separate file we can import from tests. tests/: Directory for various types of tests tests/run-test.sh: Shell script that to run tests with an appropriate environment set up. tests/testcommon/: Common modules and data for tests tests/interactive/: Interactive tests tests/interactive/box-layout.js: A sample test of StLayout https://bugzilla.gnome.org/show_bug.cgi?id=595987
19 lines
376 B
Makefile
19 lines
376 B
Makefile
SUBDIRS = data js src tests po
|
|
|
|
EXTRA_DIST = \
|
|
.project \
|
|
.settings
|
|
|
|
distcheck-hook:
|
|
@echo "Checking disted javascript against files in git"
|
|
@failed=false; \
|
|
for f in `cd $(srcdir) && git ls-files js` ; do \
|
|
if ! test -e $(distdir)/$$f ; then \
|
|
echo File missing from distribution: $$f ; \
|
|
failed=true ; \
|
|
fi \
|
|
done ; \
|
|
if $$failed ; then \
|
|
exit 1 ; \
|
|
fi
|