X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fwidgets%2FMakefile;h=244bc90d97b33ac606bab7826beaae07c3af48dd;hb=e1a241b58750ee3601cf8a282778398e518078e9;hp=0cd4805efa11b67bc567c42c1745167cb0d526da;hpb=071252b434b22d16ee1c18db2ae5c8615ef9f993;p=mkws-moved-to-github.git diff --git a/test/widgets/Makefile b/test/widgets/Makefile index 0cd4805..244bc90 100644 --- a/test/widgets/Makefile +++ b/test/widgets/Makefile @@ -16,7 +16,7 @@ all: help clean: rm -f mkws-error.png mkws-error.html - rm -f ${IMAGES}/*.png + rm -f ${IMAGES}/*.png ${IMAGES}/*.png.tmp rm -f ${IMAGES}/index.html distclean: clean @@ -24,8 +24,9 @@ distclean: clean test: check screenshot: - file=$$(echo "${PHANTOMJS_URL}" | ${MD5} | perl -npe 's,\s.*,,'); \ - ${PHANTOMJS} ${PROG} ${PHANTOMJS_URL} ${IMAGES}/$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT} + file=$$(echo "${PHANTOMJS_URL}" | perl -npe 's,(\W),-,g'); \ + ${PHANTOMJS} ${PROG} ${PHANTOMJS_URL} ${IMAGES}/tmp.$$file.png ${SCREENSHOT_WIDTH_HEIGHT} ${TIMEOUT}; \ + mv -f ${IMAGES}/tmp.$$file.png ${IMAGES}/$$file.png screenshots: for i in $$(cat url.txt); do \ @@ -34,7 +35,7 @@ screenshots: make index index: - cd ${IMAGES}; ls *.png | perl -ne 'chomp; print qq{$$_
\n}' > index.html + cd ${IMAGES}; ls -tr *.png | perl -ne 'chomp; print qq{

$$_



\n}' > index.html help: @echo "make [ all | clean | distclean ]"