
14 Dec
2005
14 Dec
'05
2:07 p.m.
Something seems to have happened to Boost.Test overnight that causes the following simple test-case to emit an error: --- #include <boost/test/unit_test.hpp> #include <boost/test/included/unit_test_framework.hpp> using boost::unit_test::test_suite; test_suite* init_unit_test_suite (int, char*[]) { test_suite* test = BOOST_TEST_SUITE("something"); return test; } --- Output (using latest CVS): --- Boost.Test framework error: Test is not initialized --- Output (using Boost 1.33.0): --- *** No errors detected --- -- Caleb Epstein caleb dot epstein at gmail dot com