64cd51667d
Add String formatting by extending the String object with a format method. Now we can do stuff like "Text: %s, %d".format(somevar, 5) This is required for proper translation of some strings. https://bugzilla.gnome.org/show_bug.cgi?id=595661
28 lines
727 B
Makefile
28 lines
727 B
Makefile
noinst_SCRIPTS = run-test.sh
|
|
EXTRA_DIST = run-test.sh.in
|
|
|
|
TEST_JS = \
|
|
interactive/borders.js \
|
|
interactive/box-layout.js \
|
|
interactive/calendar.js \
|
|
interactive/css-fonts.js \
|
|
interactive/inline-style.js \
|
|
interactive/scrolling.js \
|
|
interactive/table.js \
|
|
testcommon/border-image.png \
|
|
testcommon/ui.js \
|
|
unit/format.js
|
|
EXTRA_DIST += $(TEST_JS)
|
|
|
|
TEST_MISC = \
|
|
testcommon/test.css
|
|
EXTRA_DIST += $(TEST_MISC)
|
|
|
|
run-test.sh: run-test.sh.in
|
|
$(AM_V_GEN) sed \
|
|
-e "s|@GJS_JS_DIR[@]|$(GJS_JS_DIR)|" \
|
|
-e "s|@GJS_JS_NATIVE_DIR[@]|$(GJS_JS_NATIVE_DIR)|" \
|
|
-e "s|@MUTTER_LIB_DIR[@]|$(MUTTER_LIB_DIR)|" \
|
|
-e "s|@srcdir[@]|$(srcdir)|" \
|
|
$< > $@ && chmod a+x $@
|