For all people who don't get the trunk :) I just release CppUTest 3.1 on SourceForge. You can find it at cpputest.sf.net
The major change with v2.x which was the previous "current" version is that the Utest is split which allows for TEST_GROUP members to be destroyed before the memory leak detector gets angry at you.... For example, with CppUTest 3 you can do:
TEST_GROUP(blah)
{
SimpleString str;
};
Whereas with v2, this usually lead to a memory leak in TEST_GROUP :)
Bas
Hiya,For all people who don't get the trunk :) I just release CppUTest 3.1 on SourceForge. You can find it at cpputest.sf.net
Oki, I think I fixed that, and I should use James' release scripts they way they are intended ;)
Thanks!
Bas