Correct testing bugs:

either changing assert(...) or BOOST_ASSERT(...) to BOOST_TEST
    (in my code only)

    or adding "return boost::report_errors();" where it was clearly
    missing (and a pure bug, in anyone's code).


[SVN r37057]
This commit is contained in:
Dave Abrahams
2007-02-24 22:40:59 +00:00
parent 9d5a463806
commit f0abc88775

View File

@ -225,4 +225,5 @@ int main()
test_sequence(l1);
test_sequence(l2);
test_sequence(l3);
return boost::report_errors();
}