X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=test%2Fwidgets%2FMakefile;h=695f237f8028a6fad06a173bb5fde7505659505c;hp=e693a153d2176e1bf725aa1ccc64272e9c933d33;hb=5f44abe653fc4bd899d824b141943477e94f1e20;hpb=b262f721faa1e2b11081fbf8ca9d12751929fc32 diff --git a/test/widgets/Makefile b/test/widgets/Makefile index e693a15..695f237 100644 --- a/test/widgets/Makefile +++ b/test/widgets/Makefile @@ -28,20 +28,25 @@ test: check screenshot: file=${PREFIX}.$$(echo "${PHANTOMJS_URL}" | perl -npe 's,(\W),-,g; s/-$$//;'); \ - ${PHANTOMJS} ${PROG} ${PHANTOMJS_URL} ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \ + ${PHANTOMJS} ${PROG} "${PHANTOMJS_URL}" ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \ mv -f ${IMAGES}/tmp.$$file.png ${IMAGES}/$$file.png screenshots: clean estimate-time iframe set -e; \ for t in ${TESTS}; do \ for i in $$(cat url.$$t); do \ - ${MAKE} PHANTOMJS_URL="$$i" TIMEOUT=4 PREFIX=$$t screenshot; \ - done; \ + ${MAKE} PHANTOMJS_URL="$$i" TIMEOUT=4 PREFIX=$$t screenshot & sleep 1; \ + done; wait; \ ${MAKE} PREFIX=$$t index; \ done + ${MAKE} tidy help-url + +help-url: + @echo "" + @echo "Please check now: http://localhost/test/widgets/" estimate-time: - @wc -l url.* | tail -n1 | awk '{print "Estimeate run time: " $$1 * (1 + '${TIMEOUT}'), "seconds" }' + @wc -l url.* | tail -n1 | awk '{print "Estimeate run time: " $$1 * (1 + '${TIMEOUT}') * 0.5, "seconds" }' @echo "" index: @@ -49,12 +54,19 @@ index: iframe: index-iframe-demo index-iframe-demo: - ( cat url.demos | perl -ne 'chomp; print qq{

$$_

\n}' ) > iframe-demos.html + ( egrep example.indexdata.com url.demos | perl -ne 'chomp; print qq{

$$_

\n}' ) > iframe-demos-example.html + ( egrep -v example.indexdata.com url.demos | perl -ne 'chomp; print qq{

$$_

\n}' ) > iframe-demos-other.html + +tidy: + for i in iframe-demos.html index-*.html; do \ + tidy -i -m $$i >/dev/null 2>&1; \ + perl -i -npe 's,(^\s*), $$1,' $$i; \ + done help: @echo "make [ all | clean | distclean ]" @echo " [ screenshots ]" - @echo " [ screenshot | index | iframe ]" + @echo " [ screenshot | index | iframe | tidy ]" @echo "" @echo "Examples: " @echo ""