|
Boost Testing : |
From: Tobias Schwinger (tschwinger_at_[hidden])
Date: 2006-02-21 18:28:18
Martin Wille wrote:
>
> You have to tell the testers about that. Those who run the tests
> incrementally will have to delete the old results manually.
>
> Do we have any "how to support regression testing" page that bundles
> that kind of information for library maintainers and test runners?
>
Before setting up a page for this one, I'd probably consider adding
# Remove .test files older than 20 days automatically
find $boost_root -type f -name '*.test' -ctime +20 -exec rm {} ';'
to run_tests.sh. BTW. 'find' and the options used above are "SysV primordial soup" so it should be portable to pretty much any *NIX environment.
Regards,
Tobias