From: Wolfram Schneider Date: Mon, 20 Oct 2014 11:39:10 +0000 (+0000) Subject: estimate run time for screenshots X-Git-Tag: 1.0.0~156^2~3 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=7aeb498a603e6bd40182de101a042a50a6ceba74 estimate run time for screenshots --- diff --git a/test/widgets/Makefile b/test/widgets/Makefile index ba94c02..13be541 100644 --- a/test/widgets/Makefile +++ b/test/widgets/Makefile @@ -30,7 +30,7 @@ screenshot: ${PHANTOMJS} ${PROG} ${PHANTOMJS_URL} ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \ mv -f ${IMAGES}/tmp.$$file.png ${IMAGES}/$$file.png -screenshots: clean +screenshots: clean estimate-time for t in ${TESTS}; do \ for i in $$(cat url.$$t); do \ ${MAKE} PHANTOMJS_URL="$$i" TIMEOUT=4 PREFIX=$$t screenshot; \ @@ -38,6 +38,10 @@ screenshots: clean ${MAKE} PREFIX=$$t index; \ done +estimate-time: + @wc -l url.* | tail -n1 | awk '{print "Estimeate run time: " $$1 * (1 + '${TIMEOUT}'), "seconds" }' + @echo "" + index: ( cd ${IMAGES}; ls -tr ${PREFIX}.*.png | perl -ne 'chomp; print qq{

$$_



\n}' ) > index-${PREFIX}.html