oups I haven't seen this question.
squeakci can run all tests of an image (using ContinuousIntegration package) and generate an html report using XML files.
squeakci -t myimage.image (run all tests)
squeakci -r myimage.image (print html report on standard output)
more concise :
squeack -tr myimage.image > report.html
Note you don't have to install ContinuousIntegration and XMLSupport manually, squeakci do this.
squeakci-get takes the url of a zip archize as argument and do this:
- dowload the archive
- unzip the archive
- run squeakci on the image extracted
- generate the html report
For example:
squeakci-get
https://gforge.inria.fr/frs/download.php/5547/sq3.9.1-7075dev08.08.1.zip
will do all the work and you'll end up with a sq3.9.1-7075dev08.08.1.tests.html
Laurent Laffont