|
Boost Testing : |
From: Boris Gubenko (Boris.Gubenko_at_[hidden])
Date: 2005-12-11 19:18:16
Boris Gubenko" wrote:
> python regression.py setup --runner=... --toolsets=... ...
> python regression.py test --runner=... --toolsets=... ...
>
> This sequence seemed to work, but if somebody can confirm, that this
> is the right way of doing things it will be appreciated. The test
> command does not upload results to the metacomm site, but for what
> I'm doing now it is not needed.
>
One more thing: when testing against released boost, as opposite to
CVS-HEAD, the tarball should be unpacked into the boost subdirectory
because this is what regression.py is using as a root when unpacking
boost-CVS-HEAD.tar.bz2. For boost 1.33.1, for example:
rm -r boost
rm -r results
( gunzip -c boost_1_33_1.tar.gz | tar xf - ) ; mv boost_1_33_1 boost
python regression.py setup --runner=... --toolsets=...
python regression.py test --runner=... --toolsets=... ...
Boris